class TestBoxC
{
public:
TestBoxC (const std::string& testinfo);
std::string getINFO() const;
protected:
std::string _ testinfo;
};
inline std::string TestBoxC:: getINFO() const
{
return _testinfo;
}
TestBoxC *info;
info-> getINFO();