This commit is contained in:
coco
2026-07-03 16:05:30 +08:00
commit df489d5640
1101 changed files with 779140 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
// SynOperator.h: interface for the CSynOperator class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_SYNOPERATOR_H__E8619612_78B8_489B_9183_DB6F1B82F550__INCLUDED_)
#define AFX_SYNOPERATOR_H__E8619612_78B8_489B_9183_DB6F1B82F550__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class COpSynDlg;
class CSynOperator
{
public:
void InitialSynDlg(COpSynDlg* pOpSynDlg); //初始化同步对话框(pOpSynDlg---in:同步对话框)
void Syn(); //同步
CSynOperator(_ConnectionPtr& pConnection);
virtual ~CSynOperator();
private:
_ConnectionPtr m_pConnection;
CStateProcessor m_stateProcessor;
CHandleProcessor m_handleProcessor;
};
#endif // !defined(AFX_SYNOPERATOR_H__E8619612_78B8_489B_9183_DB6F1B82F550__INCLUDED_)