summaryrefslogtreecommitdiff
path: root/src/cppunit/PlugInParameters.cpp
blob: 71b55dc08e490cfa5f051a1f9e02cdac02ca50b0 (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
#if !defined(CPPUNIT_NO_TESTPLUGIN)

#include <cppunit/plugin/PlugInParameters.h>

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)