summaryrefslogtreecommitdiff
path: root/osframework/source/SexyAppFramework/Insets.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'osframework/source/SexyAppFramework/Insets.cpp')
-rw-r--r--osframework/source/SexyAppFramework/Insets.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/osframework/source/SexyAppFramework/Insets.cpp b/osframework/source/SexyAppFramework/Insets.cpp
new file mode 100644
index 0000000..90fba6e
--- /dev/null
+++ b/osframework/source/SexyAppFramework/Insets.cpp
@@ -0,0 +1,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)
+{
+}
+