Go to the documentation of this file.00001 #ifndef __BCMTFPROCESS__H
00002 #define __BCMTFPROCESS__H
00003
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #include <string>
00028
00029
00030 class BCMTFProcess
00031 {
00032 public:
00033
00034
00035 BCMTFProcess(const char * name);
00036 ~BCMTFProcess();
00037
00038
00039
00040
00041 void SetName(const char * name)
00042 { fName = name; };
00043
00044
00045 std::string GetName()
00046 { return fName; };
00047
00048 private:
00049
00050
00051 std::string fName;
00052
00053 };
00054
00055
00056 #endif
00057