mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-03 01:50:24 +08:00
git-svn-id: http://rtabmap.googlecode.com/svn/branches/0.3/rtabmap@52 f169173b-cf89-36c8-b27e-44dbe73f0c83
25 lines
424 B
C++
25 lines
424 B
C++
#ifndef CPPUNIT_UI_TEXT_TESTRUNNER_H
|
|
#define CPPUNIT_UI_TEXT_TESTRUNNER_H
|
|
|
|
#include <cppunit/ui/text/TextTestRunner.h>
|
|
|
|
|
|
#if defined(CPPUNIT_HAVE_NAMESPACES)
|
|
|
|
CPPUNIT_NS_BEGIN
|
|
namespace TextUi
|
|
{
|
|
|
|
/*! Text TestRunner (DEPRECATED).
|
|
* \deprecated Use TextTestRunner instead.
|
|
*/
|
|
typedef TextTestRunner TestRunner;
|
|
|
|
}
|
|
CPPUNIT_NS_END
|
|
|
|
#endif // defined(CPPUNIT_HAVE_NAMESPACES)
|
|
|
|
|
|
#endif // CPPUNIT_UI_TEXT_TESTRUNNER_H
|