| 1234567891011121314151617181920212223242526272829303132 |
- #pragma once
- #include "OTSSegmentClr.h"
- #include "OTSFeature.h"
- namespace OTSINTERFACE {
- using namespace System;
- using namespace OTSDATA;
- public ref class COTSFeatureClr : public Object
- {
- public:
- COTSFeatureClr();
-
-
- COTSFeatureClr(COTSFeaturePtr); // copy constructor
- !COTSFeatureClr();
- ~COTSFeatureClr();
- COTSFeaturePtr GetOTSFeaturePtr();
-
-
- COTSSegmentListClr^ GetSegmentsList(); // segments list
- void SetSegmentsList(COTSSegmentListClr^ a_plistSegment, bool a_bClear);
- COTSSegmentClr^ GetSegmentByIndex(int a_nIndex);
- protected:
- COTSFeaturePtr* mFeature;
-
-
- };
- }
|