X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/5178870c9c7f80d0c6f1b715d0131320d8f5bc90..90e389f6ec12e60a62c362296ffcf314feb5b03d:/include/stg/stg_message.h diff --git a/include/stg/stg_message.h b/include/stg/stg_message.h deleted file mode 100644 index 16fe566f..00000000 --- a/include/stg/stg_message.h +++ /dev/null @@ -1,56 +0,0 @@ -#ifndef STG_MESSAGES_H -#define STG_MESSAGES_H - -/* - * Author : Boris Mikhailenko - */ - - /* - $Revision: 1.3 $ - $Date: 2010/03/04 11:49:52 $ - */ - -#include -#include - -#include "os_int.h" - -//----------------------------------------------------------------------------- -struct STG_MSG_HDR -{ -STG_MSG_HDR() - : id(0), - ver(0), - type(0), - lastSendTime(0), - creationTime(0), - showTime(0), - repeat(0), - repeatPeriod(0) -{}; - -uint64_t id; -unsigned ver; -unsigned type; -unsigned lastSendTime; -unsigned creationTime; -unsigned showTime; -int repeat; -unsigned repeatPeriod; -}; -//----------------------------------------------------------------------------- -struct STG_MSG -{ -STG_MSG() {}; - -time_t GetNextSendTime() const -{ -return header.lastSendTime + header.repeat * 60; -}; - -STG_MSG_HDR header; -std::string text; -}; -//----------------------------------------------------------------------------- - -#endif