34 lines
914 B
C++
34 lines
914 B
C++
/****************************************************************************
|
|
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__ */
|