00001 #ifndef CSCobject_h 00002 #define CSCobject_h 00003 00004 #include <vector> 00005 #include <map> 00006 00007 class CSCobject{ 00008 public: 00009 CSCobject(); 00010 ~CSCobject(); 00011 00012 std::map< int, std::vector<std::vector<float> > > obj; 00013 }; 00014 00015 #endif