sogridanalystex.cpp

来自「SuperMap的网络分析示范源码」· C++ 代码 · 共 83 行

CPP
83
字号
// Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++

// NOTE: Do not modify the contents of this file.  If this class is regenerated by
//  Microsoft Visual C++, your modifications will be overwritten.


#include "stdafx.h"
#include "sogridanalystex.h"

// Dispatch interfaces referenced by this interface
#include "sogridanalysisenvironment.h"
#include "somathoperator.h"
#include "soconversionoperator.h"
#include "sogeneralizeoperator.h"
#include "sostatisticoperator.h"


/////////////////////////////////////////////////////////////////////////////
// CsoGridAnalystEx properties

CsoGridAnalysisEnvironment CsoGridAnalystEx::GetAnalysisEnvironment()
{
	LPDISPATCH pDispatch;
	GetProperty(0x1, VT_DISPATCH, (void*)&pDispatch);
	return CsoGridAnalysisEnvironment(pDispatch);
}

void CsoGridAnalystEx::SetAnalysisEnvironment(LPDISPATCH propVal)
{
	SetProperty(0x1, VT_DISPATCH, propVal);
}

CsoMathOperator CsoGridAnalystEx::GetMath()
{
	LPDISPATCH pDispatch;
	GetProperty(0x2, VT_DISPATCH, (void*)&pDispatch);
	return CsoMathOperator(pDispatch);
}

void CsoGridAnalystEx::SetMath(LPDISPATCH propVal)
{
	SetProperty(0x2, VT_DISPATCH, propVal);
}

CsoConversionOperator CsoGridAnalystEx::GetConversion()
{
	LPDISPATCH pDispatch;
	GetProperty(0x3, VT_DISPATCH, (void*)&pDispatch);
	return CsoConversionOperator(pDispatch);
}

void CsoGridAnalystEx::SetConversion(LPDISPATCH propVal)
{
	SetProperty(0x3, VT_DISPATCH, propVal);
}

CsoGeneralizeOperator CsoGridAnalystEx::GetGeneralize()
{
	LPDISPATCH pDispatch;
	GetProperty(0x4, VT_DISPATCH, (void*)&pDispatch);
	return CsoGeneralizeOperator(pDispatch);
}

void CsoGridAnalystEx::SetGeneralize(LPDISPATCH propVal)
{
	SetProperty(0x4, VT_DISPATCH, propVal);
}

CsoStatisticOperator CsoGridAnalystEx::GetStatistics()
{
	LPDISPATCH pDispatch;
	GetProperty(0x5, VT_DISPATCH, (void*)&pDispatch);
	return CsoStatisticOperator(pDispatch);
}

void CsoGridAnalystEx::SetStatistics(LPDISPATCH propVal)
{
	SetProperty(0x5, VT_DISPATCH, propVal);
}

/////////////////////////////////////////////////////////////////////////////
// CsoGridAnalystEx operations

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?