fdhwlib
2.0.25
|
00001 /*************************************************************************** 00002 fe4timestamp.h - description 00003 00004 begin : Mon Ap6 6 2009 00005 copyright : (C) 2009 by H.-J. Mathes 00006 email : mathes@kit.edu 00007 status : 00008 test : 00009 history : cloned from fetimestamp.h 00010 ***************************************************************************/ 00011 00012 00013 #ifndef FE4TIMESTAMP_H 00014 #define FE4TIMESTAMP_H 00015 00016 #include <hw4/slttime.h> 00017 00018 #include <FE/FEdef.h> 00019 00020 #include <hw4/fltdef.h> 00021 #include <hw4/sltdef.h> 00022 00023 00028 class FE4timeStamp : public hw4::SltTime { 00029 public: 00030 FE4timeStamp() { } 00031 FE4timeStamp(hw4::SltTime time) : hw4::SltTime(time) { } 00032 ~FE4timeStamp() { } 00033 00034 using SltTimeBase::operator=; 00035 using SltTimeBase::minus; 00036 00037 // using hw4::SltTime::operator=; 00038 // using hw4::SltTime::minus; 00039 00040 FE4timeStamp& operator=(const FE4timeStamp& rhs) 00041 { SltTimeBase::operator=( rhs ); return *this; } 00042 FE4timeStamp& operator=(const long unsigned int& data) 00043 { SltTimeBase::operator=( data ); return *this; } 00044 }; 00045 00046 #endif // FE4TIMESTAMP_H