00001 #ifndef SCT_CALIBRATION_CONTROLER_TESTDATA_WRAPPER_H
00002 #define SCT_CALIBRATION_CONTROLER_TESTDATA_WRAPPER_H
00003 #include "IsInfoWrapper.h"
00004 #include <boost/shared_ptr.hpp>
00005
00006 class TestData;
00007
00008 namespace SctCalibrationController {
00010 class TestDataWrapper : public IsInfoWrapper {
00011 public:
00012 TestDataWrapper(boost::shared_ptr<TestData> td);
00014 std::string getClassName() const;
00016 Sct::UniqueID getUniqueID() const;
00017 };
00018
00019 }
00020
00021 #endif