Kind-of worked on the R-Tree; not really enough time to do much.
[aesalon.git] / include / artisan / gviewport / LineObject.h
blob48f2fa4228d52b5da1fef7b3667d7019e1799570
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/LineObject.h
8 */
10 #ifndef AesalonArtisan_GViewport_LineObject_H
11 #define AesalonArtisan_GViewport_LineObject_H
13 #include "Object.h"
15 namespace Artisan {
16 namespace GViewport {
18 class LineObject : public Object {
19 private:
20 Point m_from, m_to;
21 public:
22 LineObject(const Point &from, const Point &to);
23 virtual ~LineObject();
25 virtual void renderOnto(RenderedImage &image);
28 } // namespace GViewport
29 } // namespace Artisan
31 #endif