- Timestamp:
- 05/23/12 17:00:46 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/EventDim.h
r10570 r13833 27 27 28 28 public: 29 EventDim( int target,const std::string &name, const std::string &format, DimCommandHandler *handler)30 : EventImp( target), DimCommand(name.c_str(), format.c_str(), handler), fDescription(0)29 EventDim(const std::string &name, const std::string &format, DimCommandHandler *handler) 30 : EventImp(), DimCommand(name.c_str(), format.c_str(), handler), fDescription(0) 31 31 { 32 32 // Initialize these values from DimCommand, because DimCommand … … 54 54 55 55 const void *GetData() const { return const_cast<EventDim*>(this)->getData(); } 56 intGetSize() const { return const_cast<EventDim*>(this)->getSize(); }56 size_t GetSize() const { return const_cast<EventDim*>(this)->getSize(); } 57 57 58 58 Time GetTime() const
Note:
See TracChangeset
for help on using the changeset viewer.