-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSize.cpp
More file actions
executable file
·53 lines (42 loc) · 835 Bytes
/
Copy pathSize.cpp
File metadata and controls
executable file
·53 lines (42 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include "PyGISCore/Size.h"
Size::Size():cx(0),cy(0)
{
}
Size::~Size()
{
}
Size::Size(int nX,int nY):cx(nX),cy(nY)
{
}
bool operator==(const Size& szSrc,const Size& szTag)
{
return szSrc.cx==szTag.cx && szSrc.cy==szTag.cy;
}
bool operator!=(const Size& szSrc,const Size& szTag)
{
return szSrc.cx!=szTag.cx || szSrc.cy!=szTag.cy;
}
Size& Size::operator+=(const Size& sz)
{
cx+=sz.cx;
cy+=sz.cy;
return *this;
}
Size& Size::operator-=(const Size& sz)
{
cx-=sz.cx;
cy-=sz.cy;
return *this;
}
Size Size::operator-() const
{
return Size(-cx,-cy);
}
Size operator+(const Size& szSrc,const Size& szTag)
{
return Size(szSrc.cx+szTag.cx,szSrc.cy+szTag.cy);
}
Size operator-(const Size& szSrc,const Size& szTag)
{
return Size(szSrc.cx-szTag.cx,szSrc.cy-szTag.cy);
}