A class describing a process. More...
#include <BCMTFProcess.h>
Public Member Functions | |
Constructors and destructors | |
BCMTFProcess (const char *name) | |
~BCMTFProcess () | |
Member functions (get) | |
std::string | GetName () |
Member functions (set) | |
void | SetName (const char *name) |
Private Attributes | |
std::string | fName |
A class describing a process.
Definition at line 26 of file BCMTFProcess.h.
BCMTFProcess::BCMTFProcess | ( | const char * | name | ) |
The default constructor. name The name of the process.
Definition at line 13 of file BCMTFProcess.cxx.
{ fName = name; }
BCMTFProcess::~BCMTFProcess | ( | ) |
std::string BCMTFProcess::GetName | ( | ) | [inline] |
void BCMTFProcess::SetName | ( | const char * | name | ) | [inline] |
Set the name of the process.
name | The name of the process. |
Definition at line 59 of file BCMTFProcess.h.
{ fName = name; };
std::string BCMTFProcess::fName [private] |
The name of the process.
Definition at line 60 of file BCMTFProcess.h.