/**************************************************************************** * @source : CommThread.h * @description : Comm Thread class header **************************************************************************** * DATE AUTHOR DESCRIPTION * -------------------------------------------------------------------------- * 2012/03/09 CYM [100] First Cut * ****************************************************************************/ //--------------------------------------------------------------------------- #ifndef CommThreadH #define CommThreadH //--------------------------------------------------------------------------- #include #include "ITSLogF.h" //--------------------------------------------------------------------------- class TCommThread : public TThread { private: protected: void __fastcall Execute(); public: __fastcall TCommThread(void); __fastcall TCommThread(bool CreateSuspended); __fastcall ~TCommThread(void); void DisplayMsg(unsigned int AMsg); IPC_LOG_MESSAGE FLogMsg; int LogWrite(int ALogKind, char *AFmt, ...); }; //--------------------------------------------------------------------------- #endif