mirror of https://github.com/AxioDL/boo.git
Initial commit
This commit is contained in:
commit
52c73af8a6
|
@ -0,0 +1,12 @@
|
|||
#include "CContext.hpp"
|
||||
|
||||
CContext::CContext()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
CContext::~CContext()
|
||||
{
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
#ifndef ICONTEXT_HPP
|
||||
#define ICONTEXT_HPP
|
||||
|
||||
|
||||
class IContext
|
||||
{
|
||||
public:
|
||||
IContext();
|
||||
~IContext();
|
||||
};
|
||||
|
||||
#endif // ICONTEXT_HPP
|
|
@ -0,0 +1,5 @@
|
|||
HEADERS += \
|
||||
IContext.hpp
|
||||
|
||||
SOURCES += \
|
||||
IContext.cpp
|
Loading…
Reference in New Issue