#ifndef HBOX_H #define HBOX_H #include #include using namespace std; class hbox{ private: int dim; vector coord; int dummy; public: // hcube(int n); hbox(); ~hbox(); void setDummy(int dum) {dum = dummy; } void setCoord(const vector coordinate); vector getCoord() {return coord; } bool operator== ( const hbox& other); bool operator< (const hbox& h) const {return dummy < h.dummy; } }; #endif