UGDK  0.4.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
shape.h
Go to the documentation of this file.
1 #ifndef UGDK_GRAPHIC_DRAWABLE_SHAPE_H_
2 #define UGDK_GRAPHIC_DRAWABLE_SHAPE_H_
3 
5 
6 namespace ugdk {
7 namespace graphic {
8 
9 class Shape : public Drawable {
10  public:
11  virtual ~Shape() {};
12 
13  protected:
14  Shape() {}
15 };
16 
17 } // namespace graphic
18 } // namespace ugdk
19 
20 #endif