a
This commit is contained in:
@@ -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_)
|
||||
Reference in New Issue
Block a user