Changeset 1513 for trunk/lib/Date.h
- Timestamp:
- Sep 23, 2012, 6:09:08 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Date.h
r978 r1513 31 31 32 32 /// 33 /// Class taking care of time and date handling. 33 /// Class taking care of time and date handling. 34 34 /// 35 class Date 35 class Date 36 36 { 37 37 public: … … 83 83 /// \a format sets the format of the returned string. Supported 84 84 /// parameters are: 85 /// %a - short string of weekday e.g. Wed 85 /// %a - short string of weekday e.g. Wed 86 86 /// %A - long string of weekday e.g. Wednesday 87 /// %b - short string of month e.g. Apr 87 /// %b - short string of month e.g. Apr 88 88 /// %B - long string of weekday e.g. April 89 89 /// %d - day of month integer e.g. 9 … … 101 101 /// %Z - timezone abbrevation 102 102 /// 103 /// \return date and time 103 /// \return date and time 104 104 /// 105 105 std::string operator()(std::string format) const; … … 115 115 /// @return true if lhs is earlier than \a rhs 116 116 /// 117 inline bool operator<(const Date& rhs) const 117 inline bool operator<(const Date& rhs) const 118 118 { return time_<rhs.time_; } 119 119
Note: See TracChangeset
for help on using the changeset viewer.