37 lines
1.0 KiB
C++
37 lines
1.0 KiB
C++
// ExecOperator.h: interface for the CExecOperator class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_EXECOPERATOR_H__AABE01CF_A9ED_456B_B38A_5A36618F70A9__INCLUDED_)
|
|
#define AFX_EXECOPERATOR_H__AABE01CF_A9ED_456B_B38A_5A36618F70A9__INCLUDED_
|
|
|
|
|
|
#include "opexec2drsptestdlg.h"
|
|
|
|
#include "HandleProcessor.h" // Added by ClassView
|
|
#include "StateProcessor.h" // Added by ClassView
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
class COpExec2DRSPTestSetDlg;
|
|
class CExecOperator
|
|
{
|
|
public:
|
|
void InitialExec2DRSPTestSetDlg(COpExec2DRSPTestSetDlg* pOpExec2DRSPTestSetDlg); //初始化执行2D电阻率测试设置对话框(pOpExec2DRSPTestSetDlg---in:执行2D电阻率测试设置对话框)
|
|
|
|
CExecOperator(_ConnectionPtr& pConnection);
|
|
virtual ~CExecOperator();
|
|
|
|
void ExecRSPTest();
|
|
|
|
private:
|
|
_ConnectionPtr m_pConnection;
|
|
CStateProcessor m_stateProcessor;
|
|
CHandleProcessor m_handleProcessor;
|
|
|
|
|
|
};
|
|
|
|
#endif // !defined(AFX_EXECOPERATOR_H__AABE01CF_A9ED_456B_B38A_5A36618F70A9__INCLUDED_)
|