X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=include%2Fboard.h;h=f70e4f8d5a09e06844d5b4990be4831cf7c43fba;hb=cd75427de26fc2ebc9baad558b1c0a081faa3b43;hp=bdc5852cb747d35e0d250cdb18c84327404dae52;hpb=107bd97018964d48425306026d06afd038e84db0;p=fms.git 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