/**************************************************************************** Service Sync Mode Class Header ----------------------------------------- begin : 2014/09/02 copyright : (C) 2005 Solbox Inc. author : Storage Dev Team email : storage.sd@solbox.com version : 3.4 CopyRight(C) 2005 Solbox Inc. All Rights reserved. Redistribution and use in source and binary forms, with or with out modification, are not permitted in outside of Solbox Inc. *****************************************************************************/ #ifndef __SERVICE_SYNC_MODE_H__ #define __SERVICE_SYNC_MODE_H__ #include "ModeBase.h" // class CSyncMode : Sync Mode class class CSyncMode : public CServiceMode { public: CSyncMode(CProcessSocketControl * pclient); virtual ~CSyncMode(); // ¿äû ¹ÞÀº µ¥ÀÌÅÍ(CReqSyncData) ´ëÇÑ Sync Á¤º¸ ¸¸µê // ÇÔ¼ö ¼öÇà ¼º°øÀÏ ¶§ Execute() ÇÔ¼ö ¼öÇàµÊ bool CreateSyncList(CReqSyncData &d); // sync mode ÀÛ¾÷ ¼öÇà virtual void Execute(); private: }; #endif /* __SERVICE_SYNC_MODE_H__ */