YAPOG  0.0.1
Yet Another Pokemon Online Game
DateTime.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_DATETIME_HPP
2 # define YAPOG_DATETIME_HPP
3 
4 # include <boost/date_time/posix_time/posix_time.hpp>
5 # include <boost/date_time/posix_time/posix_time_io.hpp>
6 
7 # include "YAPOG/Macros.hpp"
8 # include "YAPOG/System/String.hpp"
9 
10 namespace yap
11 {
13  {
14  public:
15 
16  typedef boost::posix_time::ptime InnerTimeType;
17 
18  explicit DateTime (const InnerTimeType& time);
19 
20  DateTime ();
21  DateTime (const DateTime& copy);
22  DateTime& operator= (const DateTime& copy);
23 
24  String ToFullDateString () const;
25 
26  private:
27 
29  };
30 } // namespace yap
31 
32 #endif // YAPOG_DATETIME_HPP