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:
Eberhard Graether
2014-03-31 17:59:52 +02:00
parent b5f91e62fa
commit d4e3433e5d
72 changed files with 957 additions and 57 deletions
+66 -2
View File
@@ -1,5 +1,69 @@
add_files(
LIB_FILES
utility.h
utility.cpp
component/controller/CodeController.cpp
component/controller/CodeController.h
component/controller/Controller.cpp
component/controller/Controller.h
component/view/CodeView.cpp
component/view/CodeView.h
component/view/View.cpp
component/view/View.h
component/view/ViewManager.cpp
component/view/ViewManager.h
component/Component.cpp
component/Component.h
component/ComponentFactory.cpp
component/ComponentFactory.h
component/ComponentManager.cpp
component/ComponentManager.h
data/access/CodeAccess.cpp
data/access/CodeAccess.h
data/access/GraphAccess.cpp
data/access/GraphAccess.h
data/Edge.cpp
data/Edge.h
data/Element.cpp
data/Element.h
data/ElementIndex.cpp
data/ElementIndex.h
data/Graph.cpp
data/Graph.h
data/GraphStorage.cpp
data/GraphStorage.h
data/Node.cpp
data/Node.h
data/Parser.cpp
data/Parser.h
data/SearchIndex.cpp
data/SearchIndex.h
data/TextLocation.cpp
data/TextLocation.h
data/TextLocationFile.cpp
data/TextLocationFile.h
data/TextLocationLine.cpp
data/TextLocationLine.h
data/TextLocationStorage.cpp
data/TextLocationStorage.h
gui/GuiElement.cpp
gui/GuiElement.h
gui/GuiElementFactory.cpp
gui/GuiElementFactory.h
utility/ConfigManager.cpp
utility/ConfigManager.h
Application.cpp
Application.h
ApplicationSettings.cpp
ApplicationSettings.h
Project.cpp
Project.h
ProjectSettings.cpp
ProjectSettings.h
)