OTSFeatureClr.h 639 B

1234567891011121314151617181920212223242526272829303132
  1. #pragma once
  2. #include "OTSSegmentClr.h"
  3. #include "OTSFeature.h"
  4. namespace OTSINTERFACE {
  5. using namespace System;
  6. using namespace OTSDATA;
  7. public ref class COTSFeatureClr : public Object
  8. {
  9. public:
  10. COTSFeatureClr();
  11. COTSFeatureClr(COTSFeaturePtr); // copy constructor
  12. !COTSFeatureClr();
  13. ~COTSFeatureClr();
  14. COTSFeaturePtr GetOTSFeaturePtr();
  15. COTSSegmentListClr^ GetSegmentsList(); // segments list
  16. void SetSegmentsList(COTSSegmentListClr^ a_plistSegment, bool a_bClear);
  17. COTSSegmentClr^ GetSegmentByIndex(int a_nIndex);
  18. protected:
  19. COTSFeaturePtr* mFeature;
  20. };
  21. }