]> git.tdb.fi Git - r2c2.git/blob - source/3d/object.h
Add target type to all lexical_casts
[r2c2.git] / source / 3d / object.h
1 #ifndef R2C2_3D_OBJECT_H_
2 #define R2C2_3D_OBJECT_H_
3
4 #include "libr2c2/geometry.h"
5
6 namespace R2C2 {
7
8 class Object3D
9 {
10 protected:
11         Object3D() { }
12 public:
13         virtual ~Object3D() { }
14
15         virtual Vector get_node() const = 0;
16         virtual bool is_visible() const = 0;
17 };
18
19 } // namespace R2C2
20
21 #endif