~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: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

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)