00001
#ifndef CPPUNIT_PLUGIN_PARAMETERS
00002
#define CPPUNIT_PLUGIN_PARAMETERS
00003
00004
#include <cppunit/Portability.h>
00005
00006
#if !defined(CPPUNIT_NO_TESTPLUGIN)
00007
00008
#include <cppunit/portability/CppUnitDeque.h>
00009
#include <string>
00010
00011
CPPUNIT_NS_BEGIN
00012
00015 class CPPUNIT_API PlugInParameters
00016 {
00017
public:
00019 PlugInParameters(
const std::string &commandLine =
"" );
00020
00021
virtual ~PlugInParameters();
00022
00024 std::string getCommandLine()
const;
00025
00026
private:
00027 std::string m_commandLine;
00028 };
00029
00030
00031
CPPUNIT_NS_END
00032
00033
#endif // !defined(CPPUNIT_NO_TESTPLUGIN)
00034
00035
00036
#endif // CPPUNIT_PLUGIN_PARAMETERS