• Main Page
  • Namespaces
  • Classes
  • Files
  • File List
  • File Members

BCMTFProcess.h

Go to the documentation of this file.
00001 #ifndef __BCMTFPROCESS__H
00002 #define __BCMTFPROCESS__H
00003 
00018 /*
00019  * Copyright (C) 2008-2012, Daniel Kollar and Kevin Kroeninger.
00020  * All rights reserved.
00021  *
00022  * For the licensing terms see doc/COPYING.
00023  */
00024 
00025 // ---------------------------------------------------------
00026 
00027 #include <string>
00028 
00029 // ---------------------------------------------------------
00030 class BCMTFProcess
00031 {
00032    public:
00033 
00034       // Constructors and destructor
00035       BCMTFProcess(const char * name);
00036       ~BCMTFProcess();
00037 
00038       // setters
00039 
00040       // set name
00041       void SetName(const char * name)
00042          { fName = name; };
00043 
00044       // getters
00045       std::string GetName()
00046          { return fName; };
00047 
00048  private:
00049 
00050       // name of the channel
00051       std::string fName;
00052 
00053 };
00054 // ---------------------------------------------------------
00055 
00056 #endif
00057 

Generated by  doxygen 1.7.1