summaryrefslogtreecommitdiff
path: root/src/cppunit/PlugInParameters.cpp
blob: 1b532f9fa26c840760cf40cdccedc48f251ac48e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <cppunit/plugin/PlugInParameters.h>

#if !defined(CPPUNIT_NO_TESTPLUGIN)

CPPUNIT_NS_BEGIN


PlugInParameters::PlugInParameters( const std::string &commandLine )
    : m_commandLine( commandLine )
{
}


PlugInParameters::~PlugInParameters()
{
}


std::string 
PlugInParameters::getCommandLine() const
{
  return m_commandLine;
}


CPPUNIT_NS_END

#endif // !defined(CPPUNIT_NO_TESTPLUGIN)