Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

export_RepBase.cxx

Go to the documentation of this file.
00001 
00012 #ifdef _MSC_VER
00013 // nonstandard extension used 'extern' before...
00014 # pragma warning(disable:4231)  
00015 
00016 // needs to have dll-interface used by client
00017 # pragma warning(disable:4251)  
00018 
00019 // non dll-interface struct
00020 # pragma warning(disable:4275)  
00021 
00022 // 'int' : forcing value to bool 'true' or 'false' (performance warning)
00023 # pragma warning(disable:4800)  
00024 #endif // _MSC_VER
00025 
00026 #include "reps/RepBase.h"
00027 
00028 #include <boost/python.hpp>
00029 
00030 #include <vector>
00031 
00032 using std::vector;
00033 using namespace boost::python;
00034 
00035 namespace hippodraw {
00036 namespace Python {
00037 
00038 void
00039 export_RepBase()
00040 {
00041   class_ < RepBase, 
00042     bases<>,
00043     RepBase, 
00044     boost::noncopyable >
00045     ( "RepBase",
00046       "The base class for  point and text representations.\n"
00047       "See PointRepFactory for creating objects of this type.\n",
00048       no_init )
00049 
00050     ;
00051 }
00052 
00053 } // namespace Python
00054 } // namespace hippodraw

Generated for HippoDraw-1.14.8.5 by doxygen 1.4.3