From 52c73af8a6ad6fa25273e17e66275e7a71e1bf57 Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Sat, 18 Apr 2015 13:41:09 -0700 Subject: [PATCH] Initial commit --- IContext.cpp | 12 ++++++++++++ IContext.hpp | 12 ++++++++++++ libBoo.pro | 5 +++++ 3 files changed, 29 insertions(+) create mode 100644 IContext.cpp create mode 100644 IContext.hpp create mode 100644 libBoo.pro diff --git a/IContext.cpp b/IContext.cpp new file mode 100644 index 0000000..ac6820a --- /dev/null +++ b/IContext.cpp @@ -0,0 +1,12 @@ +#include "CContext.hpp" + +CContext::CContext() +{ + +} + +CContext::~CContext() +{ + +} + diff --git a/IContext.hpp b/IContext.hpp new file mode 100644 index 0000000..76d1064 --- /dev/null +++ b/IContext.hpp @@ -0,0 +1,12 @@ +#ifndef ICONTEXT_HPP +#define ICONTEXT_HPP + + +class IContext +{ +public: + IContext(); + ~IContext(); +}; + +#endif // ICONTEXT_HPP diff --git a/libBoo.pro b/libBoo.pro new file mode 100644 index 0000000..81532a4 --- /dev/null +++ b/libBoo.pro @@ -0,0 +1,5 @@ +HEADERS += \ + IContext.hpp + +SOURCES += \ + IContext.cpp