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
+33
View File
@@ -0,0 +1,33 @@
/****************************************************************************
Synchronization 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 __SYNCHRONIZATION_H__
#define __SYNCHRONIZATION_H__
#include "SyncList.h"
class CSynchronization
{
public:
CSynchronization(CSyncInfo &info);
~CSynchronization();
// sync ±¸µ¿ ¿äû
int ExcuteSync();
private:
CSyncInfo m_syncinfo;
};
#endif /* __SYNCHRONIZATION_H__ */