YAPOG  0.0.1
Yet Another Pokemon Online Game
DateTimeHelper.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_DATETIMEHELPER_HPP
2 # define YAPOG_DATETIMEHELPER_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 # include "YAPOG/System/String.hpp"
7 
8 namespace yap
9 {
11  {
13 
14  public:
15 
16  static DateTime Now ();
17  static DateTime Parse (const yap::String& date);
18 
19  private:
20 
21  DateTimeHelper ();
22  ~DateTimeHelper ();
23  };
24 } // namespace yap
25 
26 #endif // YAPOG_DATETIMEHELPER_HPP