Initial commit

This commit is contained in:
Phillip Stephens 2015-04-18 13:41:09 -07:00
commit 52c73af8a6
3 changed files with 29 additions and 0 deletions

12
IContext.cpp Normal file
View File

@ -0,0 +1,12 @@
#include "CContext.hpp"
CContext::CContext()
{
}
CContext::~CContext()
{
}

12
IContext.hpp Normal file
View File

@ -0,0 +1,12 @@
#ifndef ICONTEXT_HPP
#define ICONTEXT_HPP
class IContext
{
public:
IContext();
~IContext();
};
#endif // ICONTEXT_HPP

5
libBoo.pro Normal file
View File

@ -0,0 +1,5 @@
HEADERS += \
IContext.hpp
SOURCES += \
IContext.cpp