X-Git-Url: https://git.pterodactylus.net/?p=fms.git;a=blobdiff_plain;f=include%2Fboard.h;h=f70e4f8d5a09e06844d5b4990be4831cf7c43fba;hp=bdc5852cb747d35e0d250cdb18c84327404dae52;hb=dec33c63afafabf83c3039e916725cac6faef9b3;hpb=9b22dd53fe62e312c1647310b7ec43aa127090af diff --git a/include/board.h b/include/board.h index bdc5852..f70e4f8 100644 --- a/include/board.h +++ b/include/board.h @@ -1,11 +1,11 @@ #ifndef _board_ #define _board_ -#include "datetime.h" #include "ilogger.h" #include "idatabase.h" #include +#include class Board:public ILogger,public IDatabase { @@ -21,7 +21,7 @@ public: const long GetBoardID() const { return m_boardid; } std::string GetBoardName() const { return m_boardname; } std::string GetBoardDescription() const { return m_boarddescription; } - DateTime GetDateCreated() const { return m_datecreated; } + Poco::DateTime GetDateCreated() const { return m_datecreated; } const long GetLowMessageID() const { return m_lowmessageid; } const long GetHighMessageID() const { return m_highmessageid; } const long GetMessageCount() const { return m_messagecount; } @@ -34,7 +34,7 @@ private: long m_boardid; std::string m_boardname; std::string m_boarddescription; - DateTime m_datecreated; + Poco::DateTime m_datecreated; long m_lowmessageid; // lowest id of all message currently in this board long m_highmessageid; // highest id of all message currently in this board long m_messagecount; // number of messages in this board