project: added project skeleton
Skeleton includes emtpy implementations of application class structure. Source groups were added to CMakeLists to define filters in Visual Studio.
This commit is contained in:
@@ -0,0 +1 @@
|
||||
#include "component/controller/CodeController.h"
|
||||
@@ -0,0 +1,11 @@
|
||||
#ifndef CODE_CONTROLLER_H
|
||||
#define CODE_CONTROLLER_H
|
||||
|
||||
#include "component/controller/Controller.h"
|
||||
|
||||
class CodeController: public Controller
|
||||
{
|
||||
};
|
||||
|
||||
|
||||
#endif // CODE_CONTROLLER_H
|
||||
@@ -0,0 +1,5 @@
|
||||
#include "component/controller/Controller.h"
|
||||
|
||||
Controller::~Controller()
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
#ifndef CONTROLLER_H
|
||||
#define CONTROLLER_H
|
||||
|
||||
class Controller
|
||||
{
|
||||
public:
|
||||
virtual ~Controller();
|
||||
};
|
||||
|
||||
|
||||
#endif // CONTROLLER_H
|
||||
Reference in New Issue
Block a user