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,11 @@
|
||||
#include "component/Component.h"
|
||||
|
||||
Component::Component(const std::shared_ptr<Controller>& controller, const std::shared_ptr<View>& view)
|
||||
: m_controller(controller)
|
||||
, m_view(view)
|
||||
{
|
||||
}
|
||||
|
||||
Component::~Component()
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user