CSCobject

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef CSCobject_h
#define CSCobject_h

#include <vector>
#include <map>

class CSCobject {
public:
  CSCobject();
  ~CSCobject();

  std::map<int, std::vector<std::vector<float> > > obj;
};

#endif