00001 /* 00002 * APOLLO: A complete DAQ and Online Data Analysis Framework for Cuore 00003 * $Id: QId.hh 557 2006-12-14 17:00:51Z giacher $ 00004 * M.P. created 16/4/4 00005 * 00006 * Class QId: base class for anything that has numeric Id 00007 * 00008 */ 00009 00010 #ifndef _QID_HH_ 00011 #define _QID_HH_ 00012 00013 #include "QCuore.hh" 00014 00015 class QId 00016 { 00017 public: 00018 00019 // ctor 00020 QId(const int n); 00021 00022 // dtor 00023 virtual ~QId(); 00024 00025 inline const int GetId() const { return fId; } 00026 00027 private: 00028 int fId; 00029 00030 }; 00031 00032 #endif // _QID_HH_