Imported Upstream version 2.81
[platform/upstream/libbullet.git] / UnitTests / cppunit / src / cppunit / PlugInParameters.cpp
1 #include <cppunit/plugin/PlugInParameters.h>
2
3 #if !defined(CPPUNIT_NO_TESTPLUGIN)
4
5 CPPUNIT_NS_BEGIN
6
7
8 PlugInParameters::PlugInParameters( const std::string &commandLine )
9     : m_commandLine( commandLine )
10 {
11 }
12
13
14 PlugInParameters::~PlugInParameters()
15 {
16 }
17
18
19 std::string 
20 PlugInParameters::getCommandLine() const
21 {
22   return m_commandLine;
23 }
24
25
26 CPPUNIT_NS_END
27
28 #endif // !defined(CPPUNIT_NO_TESTPLUGIN)