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
+32
View File
@@ -0,0 +1,32 @@
/****************************************************************************
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__ */