diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-04-14 20:11:54 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-04-14 20:11:54 (GMT) |
| commit | 900e23128a16bd49d8929a232ac57fc7e30ad3f9 (patch) | |
| tree | a5d04c86dc0ac5efb887579699e86143f12f20a8 /src/options | |
| parent | 4c6be4ff2cc822d9c1ed36c9c88261771775dc02 (diff) | |
| download | powder-900e23128a16bd49d8929a232ac57fc7e30ad3f9.zip powder-900e23128a16bd49d8929a232ac57fc7e30ad3f9.tar.gz | |
Add ability to get favourites
Diffstat (limited to 'src/options')
| -rw-r--r-- | src/options/OptionsController.cpp | 18 | ||||
| -rw-r--r-- | src/options/OptionsController.h | 17 | ||||
| -rw-r--r-- | src/options/OptionsModel.cpp | 18 | ||||
| -rw-r--r-- | src/options/OptionsModel.h | 17 | ||||
| -rw-r--r-- | src/options/OptionsView.cpp | 19 | ||||
| -rw-r--r-- | src/options/OptionsView.h | 19 |
6 files changed, 108 insertions, 0 deletions
diff --git a/src/options/OptionsController.cpp b/src/options/OptionsController.cpp new file mode 100644 index 0000000..ca9a332 --- /dev/null +++ b/src/options/OptionsController.cpp @@ -0,0 +1,18 @@ +/* + * OptionsController.cpp + * + * Created on: Apr 14, 2012 + * Author: Simon + */ + +#include "OptionsController.h" + +OptionsController::OptionsController() { + // TODO Auto-generated constructor stub + +} + +OptionsController::~OptionsController() { + // TODO Auto-generated destructor stub +} + diff --git a/src/options/OptionsController.h b/src/options/OptionsController.h new file mode 100644 index 0000000..6621f2f --- /dev/null +++ b/src/options/OptionsController.h @@ -0,0 +1,17 @@ +/* + * OptionsController.h + * + * Created on: Apr 14, 2012 + * Author: Simon + */ + +#ifndef OPTIONSCONTROLLER_H_ +#define OPTIONSCONTROLLER_H_ + +class OptionsController { +public: + OptionsController(); + virtual ~OptionsController(); +}; + +#endif /* OPTIONSCONTROLLER_H_ */ diff --git a/src/options/OptionsModel.cpp b/src/options/OptionsModel.cpp new file mode 100644 index 0000000..9aed1cc --- /dev/null +++ b/src/options/OptionsModel.cpp @@ -0,0 +1,18 @@ +/* + * OptionsModel.cpp + * + * Created on: Apr 14, 2012 + * Author: Simon + */ + +#include "OptionsModel.h" + +OptionsModel::OptionsModel() { + // TODO Auto-generated constructor stub + +} + +OptionsModel::~OptionsModel() { + // TODO Auto-generated destructor stub +} + diff --git a/src/options/OptionsModel.h b/src/options/OptionsModel.h new file mode 100644 index 0000000..f04d071 --- /dev/null +++ b/src/options/OptionsModel.h @@ -0,0 +1,17 @@ +/* + * OptionsModel.h + * + * Created on: Apr 14, 2012 + * Author: Simon + */ + +#ifndef OPTIONSMODEL_H_ +#define OPTIONSMODEL_H_ + +class OptionsModel { +public: + OptionsModel(); + virtual ~OptionsModel(); +}; + +#endif /* OPTIONSMODEL_H_ */ diff --git a/src/options/OptionsView.cpp b/src/options/OptionsView.cpp new file mode 100644 index 0000000..1c79961 --- /dev/null +++ b/src/options/OptionsView.cpp @@ -0,0 +1,19 @@ +/* + * OptionsView.cpp + * + * Created on: Apr 14, 2012 + * Author: Simon + */ + +#include "OptionsView.h" + +OptionsView::OptionsView(): + ui::Window(ui::Point(-1, -1), ui::Point(300, 300)){ + // TODO Auto-generated constructor stub + +} + +OptionsView::~OptionsView() { + // TODO Auto-generated destructor stub +} + diff --git a/src/options/OptionsView.h b/src/options/OptionsView.h new file mode 100644 index 0000000..6a75f06 --- /dev/null +++ b/src/options/OptionsView.h @@ -0,0 +1,19 @@ +/* + * OptionsView.h + * + * Created on: Apr 14, 2012 + * Author: Simon + */ + +#ifndef OPTIONSVIEW_H_ +#define OPTIONSVIEW_H_ + +#include "interface/Window.h" + +class OptionsView: public ui::Window { +public: + OptionsView(); + virtual ~OptionsView(); +}; + +#endif /* OPTIONSVIEW_H_ */ |
