1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- #pragma once
- #include "OTSImageProcess.h"
- #include "ReportMgr.h"
- #include "PropParamClr.h"
- #include "SmplMsrResultFileMgrClr.h"
- #include "GridDataClr.h"
- #include "RptParamFileClr.h"
- namespace OTSCLRINTERFACE {
- using namespace System::Collections::Generic;
- using namespace System;
- using namespace OTSMODEL;
- using namespace Newtonsoft::Json::Linq;
-
- public ref class CReportMgrClr : public Object
- {
- public:
- CReportMgrClr();
- CReportMgrClr(CReportMgrPtr);
-
- ~CReportMgrClr();
- !CReportMgrClr();
-
- CReportMgrPtr GetCReportMgrPtr();
- void SetSwitchForSmlResultFile(int nIndex,bool ifcheck);
- CPropParamClr^ GetPropertyParamImage();
- CPropParamClr^ GetPropertyParamTable();
- CPropParamClr^ GetPropertyParamChart();
-
- // property parameters
- bool ResetPropertyParams(bool a_bClear);
- // sample measure result files
- List<CSmplMsrResultFileMgrClr^>^ GetSmplMsrResultMgrs();
- bool AddASmplMsrResultMgr(String^ a_strPathName,String^ anotherName);
- void ClearSmplResults();
- CSmplMsrResultFileMgrClr^ GetASmplMsrResultMgrByPathName(String^ a_strPathName);
-
- // working sample index
- int GetWorkingSampleIndex();
- void SetWorkingSampleIndex(int a_nWorkingSampleIndex);
- // grid computing
- CGridDataListClr^ GridDataTransfer(CPropParamClr^ thePropParam);
-
- DataTable^ GetAllGBFields(CPropParamClr^ thePropParam);
- DataTable^ GetGBDSParticles(CPropParamClr^ thePropParam);
- bool IsHaveMultiDataSource();
- CRptParamFileClr^ GetRptParamFileClr();
-
-
- private:
- CReportMgrPtr* m_pReportMgr;
- };
- }
|