Go to the documentation of this file.00001 #ifndef __BCMTFPROCESS__H
00002 #define __BCMTFPROCESS__H
00003
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #include <string>
00024
00025
00026 class BCMTFProcess
00027 {
00028 public:
00029
00036 BCMTFProcess(const char * name);
00037
00040 ~BCMTFProcess();
00041
00048 std::string GetName()
00049 { return fName; };
00050
00059 void SetName(const char * name)
00060 { fName = name; };
00061
00064 private:
00065
00068 std::string fName;
00069
00070 };
00071
00072
00073 #endif
00074