33 lines
1.1 KiB
C++
33 lines
1.1 KiB
C++
/****************************************************************************
|
|
Synchronization Class Header
|
|
-----------------------------------------
|
|
begin : 2014/09/17
|
|
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 __RCSYNCDREQUEST_H__
|
|
#define __RCSYNCDREQUEST_H__
|
|
|
|
#include "RcSyncdRequestData.h"
|
|
|
|
class CRcSyncdRequest
|
|
{
|
|
public:
|
|
CRcSyncdRequest();
|
|
~CRcSyncdRequest();
|
|
|
|
void SendSyncRequest(int nSyncType, const std::string& strStartTime, const std::string& strEndTime);
|
|
void SendSyncRequest(int nSyncType, const std::string& strStartTime, const std::string& strEndTime, const std::string& strService);
|
|
private:
|
|
|
|
};
|
|
|
|
#endif /* __RCSYNCDREQUEST_H__ */
|