00001 #pragma once
00002 #ifndef BL7_G2_GEOMETRY_H
00003 #define BL7_G2_GEOMETRY_H
00004
00005 #include "../core.h"
00006
00007
00008
00009 namespace bl7 {
00010 namespace geometry2 {
00011
00012
00013
00018 class BODYLABS_API Geometry
00019 {
00020
00021
00022
00023
00024 public:
00026 Geometry(void) { }
00027
00029 virtual ~Geometry(void) { }
00030
00032 Geometry(const Geometry& rhs) { }
00033
00035 Geometry& operator = (const Geometry& rhs) { return *this; }
00036
00037 };
00038
00039
00040
00041 }
00042 }
00043
00044 #endif // BL7_G2_GEOMETRY_H