mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-02 17:40:23 +08:00
git-svn-id: http://rtabmap.googlecode.com/svn/branches/0.3/rtabmap@52 f169173b-cf89-36c8-b27e-44dbe73f0c83
28 lines
409 B
C++
28 lines
409 B
C++
#ifndef CPPUNIT_EXTENSIONS_TESTFACTORY_H
|
|
#define CPPUNIT_EXTENSIONS_TESTFACTORY_H
|
|
|
|
#include <cppunit/Portability.h>
|
|
|
|
CPPUNIT_NS_BEGIN
|
|
|
|
|
|
class Test;
|
|
|
|
/*! \brief Abstract Test factory.
|
|
*/
|
|
class CPPUNIT_API TestFactory
|
|
{
|
|
public:
|
|
virtual ~TestFactory() {}
|
|
|
|
/*! Makes a new test.
|
|
* \return A new Test.
|
|
*/
|
|
virtual Test* makeTest() = 0;
|
|
};
|
|
|
|
|
|
CPPUNIT_NS_END
|
|
|
|
#endif // CPPUNIT_EXTENSIONS_TESTFACTORY_H
|