This commit is contained in:
biosvos
2026-08-07 17:38:18 +09:00
commit 873193a243
9613 changed files with 2755992 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
/****************************************************************************
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__ */