• 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 
00014 /*
00015  * Copyright (C) 2008-2012, Daniel Kollar and Kevin Kroeninger.
00016  * All rights reserved.
00017  *
00018  * For the licensing terms see doc/COPYING.
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 

Generated by  doxygen 1.7.1