Kind-of worked on the R-Tree; not really enough time to do much.
[aesalon.git] / include / artisan / Viewport.h
blob5a030e580bedc6b254f5be23206f3e0b556baf48
1 /** Aesalon, a tool to visualize program behaviour in real time.
2 Copyright (C) 2009-2011, Aesalon development team.
4 Aesalon is distributed under the terms of the GNU GPLv3. See
5 the included file LICENSE for more information.
7 @file include/artisan/Viewport.h
8 */
10 #ifndef AesalonArtisan_Viewport_H
11 #define AesalonArtisan_Viewport_H
13 #include <QWidget>
15 namespace Artisan {
17 /** Represents a viewport (graphical or not) into an artisan's data. */
18 class Viewport : public QWidget {
19 public:
20 virtual ~Viewport() {}
23 } // namespace Artisan
25 #endif