blob: 6a75f0687c5d747ddf8fa004e9301a2354b96ad2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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_ */
|