Restructuring directory layout. Move towards "Modern CMake" usage.

This commit is contained in:
Jim Evins
2017-11-23 22:15:24 -05:00
parent 8bec3594ec
commit b8ee5e1f73
198 changed files with 4509 additions and 5324 deletions
+7 -7
View File
@@ -24,14 +24,14 @@
#include "ui_PropertiesView.h"
#include "Units.h"
#include "model/Model.h"
#include "model/Units.h"
namespace glabels
{
// Forward references
class LabelModel;
class UndoRedoModel;
@@ -54,7 +54,7 @@ namespace glabels
/////////////////////////////////
// Public methods
/////////////////////////////////
void setModel( LabelModel* model, UndoRedoModel* undoRedoModel );
void setModel( model::Model* model, UndoRedoModel* undoRedoModel );
/////////////////////////////////
@@ -71,10 +71,10 @@ namespace glabels
// Private Data
/////////////////////////////////
private:
LabelModel* mModel;
UndoRedoModel* mUndoRedoModel;
Units mUnits;
int mOldOrientationIndex;
model::Model* mModel;
UndoRedoModel* mUndoRedoModel;
model::Units mUnits;
int mOldOrientationIndex;
};
}