Began refactoring the entire source tree.
[aesalon.git] / include / visualizer / visualization / AbstractObject.h
blob89ed5dff8a9d3a0305e4cc75cc9bd67f1a958c39
1 /**
2 Aesalon, a tool to visualize a program's behaviour at run-time.
3 Copyright (C) 2010, Aesalon Development Team.
5 Aesalon is distributed under the terms of the GNU GPLv3. For more
6 licensing information, see the file LICENSE included with the distribution.
8 @file include/visualizer/visualization/AbstractObject.h
12 #ifndef AesalonVisualizer_Visualization_AbstractObject_H
13 #define AesalonVisualizer_Visualization_AbstractObject_H
15 namespace Visualizer {
16 namespace Visualization {
18 class AbstractObject {
19 public:
20 virtual ~AbstractObject() {}
22 virtual void paint() = 0;
25 } // namespace Visualization
26 } // namespace Visualizer
28 #endif