//#include "TObject.h" class test //: public TObject { private: float _x; float _y; public: test(); test(float x, float y); float x() const {return _x;} float y() const {return _y;} // ClassDef(test,1) };