~ubuntu-branches/ubuntu/wily/psi/wily-proposed

« back to all changes in this revision

Viewing changes to third-party/cppunit/cppunit/src/cppunit/PlugInParameters.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2008-08-28 18:46:52 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080828184652-iiik12dl91nq7cdi
Tags: 0.12-2
Uploading to unstable (Closes: Bug#494352)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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)