Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members

TTC.h

Go to the documentation of this file.
00001 #ifndef TTC_H
00002 #define TTC_H 1
00003 
00007 #include "SObject.h"
00008 
00009 class TTC: public SObject{
00010 
00011  public:
00012 
00017   TTC(const unsigned int fine1,
00018       const unsigned int fine2): 
00019   m_fine1(fine1),
00020   m_fine2(fine2){}
00021 
00023    TTC(){}
00024 
00026    virtual ~TTC(){}
00027 
00029   unsigned int fineTime1() const;
00030 
00032   unsigned int fineTime2() const;
00033 
00034   virtual void stream(CSVParser& parser);
00035 
00036 private:  
00037 
00038   unsigned int m_fine1;
00039   unsigned int m_fine2;
00040 
00041 };
00042 
00043 inline unsigned int TTC::fineTime1() const{
00044   return m_fine1;
00045 }
00046 
00047 inline unsigned int TTC::fineTime2() const{
00048   return m_fine2;
00049 }
00050 
00051 #endif

Generated on Fri Jul 8 16:38:52 2005 for Salamander by  doxygen 1.4.1