Began proof-of-concept memory module.
[aesalon.git] / include / artisan / gviewport / RectObject.h
bloba542eda3607a126d5605a243bd764b98be09c6c2
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/gviewport/RectObject.h
8 */
10 #ifndef AesalonArtisan_GViewport_RectObject_H
11 #define AesalonArtisan_GViewport_RectObject_H
13 #include "Object.h"
15 namespace Artisan {
16 namespace GViewport {
18 class RectObject : public Object {
19 public:
20 RectObject(const Rect &rect);
21 virtual ~RectObject();
23 virtual void renderOnto(RenderedImage &image);
26 } // namespace GViewport
27 } // namespace Artisan
29 #endif