summaryrefslogtreecommitdiff
path: root/osframework/source/SexyAppFramework/Insets.cpp
blob: 90fba6e4f7db644291a9425938cb1fac70c36e93 (plain)
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
#include "Insets.h"

using namespace Sexy;

Insets::Insets() :
	mLeft(0),
	mTop(0),
	mRight(0),
	mBottom(0)
{
		int a = 0;
}

Insets::Insets(int theLeft, int theTop, int theRight, int theBottom) :
	mLeft(theLeft),
	mTop(theTop),
	mRight(theRight),
	mBottom(theBottom)
{
}

Insets::Insets(const Insets& theInsets) :
	mLeft(theInsets.mLeft),
	mTop(theInsets.mTop),
	mRight(theInsets.mRight),
	mBottom(theInsets.mBottom)
{
}