aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/application.hpp
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2011-12-25 20:56:32 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-05 17:17:50 +0100
commit71f32f9c7bcedb5f44fcd80587252a8148aab758 (patch)
treeb2021106213eea437a74268ac6d0630a74e53d6a /src/menu/application.hpp
parent08241dfab34a37fb94707311def70d1ccaac702d (diff)
downloadusdx-71f32f9c7bcedb5f44fcd80587252a8148aab758.tar.gz
usdx-71f32f9c7bcedb5f44fcd80587252a8148aab758.tar.xz
usdx-71f32f9c7bcedb5f44fcd80587252a8148aab758.zip
menu/application: Application now is also a container for the overlays
Diffstat (limited to 'src/menu/application.hpp')
-rw-r--r--src/menu/application.hpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/menu/application.hpp b/src/menu/application.hpp
index 76b451f0..efd99533 100644
--- a/src/menu/application.hpp
+++ b/src/menu/application.hpp
@@ -32,13 +32,12 @@
#include <log4cpp/Category.hh>
#include <list>
-#include "drawable_control.hpp"
#include "container.hpp"
#include "frame.hpp"
namespace usdx
{
- class Application : public DrawableControl
+ class Application : public Container
{
private:
static log4cpp::Category& log;
@@ -55,8 +54,6 @@ namespace usdx
int frames_per_second;
- std::list<DrawableControl*> overlays;
-
/**
* This is the main loop.
*/
@@ -84,8 +81,6 @@ namespace usdx
const int get_frames_per_second(void) const;
void set_frames_per_second(int fps);
-
- void repaint(void);
};
};