/* -*- C++ -*- */ //============================================================================= /** * @file Date_Time.h * * $Id$ * * @author Tim Harrison (harrison@cs.wustl.edu) (and he's darn proud of this ;-)) * */ //============================================================================= #ifndef ACE_DATE_TIME_H #define ACE_DATE_TIME_H #include "ace/pre.h" #include "ace/ACE.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ /** * @class ACE_Date_Time * * @brief System independent representation of date and time. */ class ACE_Export ACE_Date_Time { public: /// Constructor initializes current time/date info. ACE_Date_Time (void); /// Constructor with init values, no check for validy /// Set/get portions of ACE_Date_Time, no check for validity. ACE_Date_Time (long day, long month = 0, long year = 0, long hour = 0, long minute = 0, long second = 0, long microsec = 0); /// Update to the current time/date. void update (void); /// Get day. long day (void) const; /// Set day. void day (long day); /// Get month. long month (void) const; /// Set month. void month (long month); /// Get year. long year (void) const; /// Set year. void year (long year); /// Get hour. long hour (void) const; /// Set hour. void hour (long hour); /// Get minute. long minute (void) const; /// Set minute. void minute (long minute); /// Get second. long second (void) const; /// Set second. void second (long second); /// Get microsec. long microsec (void) const; /// Set microsec. void microsec (long microsec); private: long day_; long month_; long year_; long hour_; long minute_; long second_; long microsec_; }; #if !defined (ACE_LACKS_INLINE_FUNCTIONS) #include "ace/Date_Time.i" #endif #include "ace/post.h" #endif /* ACE_DATE_TIME_H */