| 123456789101112131415161718192021222324252627282930313233343536 |
- #pragma once
- #include "BSEImgClr.h"
- #include "HoleBSEImg.h"
- namespace OTSINTERFACE {
-
- using namespace System;
- using namespace System::Drawing;
- using namespace OTSDATA;
- using namespace OTSMODEL;
- public ref class CHoleBSEImgClr : public CBSEImgClr
- {
- public:
- CHoleBSEImgClr(); // constructor
- CHoleBSEImgClr(System::Drawing::Rectangle^, int); // constructor
-
- CHoleBSEImgClr(CHoleBSEImgPtr); // copy constructor
-
- CHoleBSEImgClr(CHoleBSEImg*);
- ~CHoleBSEImgClr();
- !CHoleBSEImgClr();
- // get and set hole id
- int GetHoleID();
- void SetHoleID(int a_nHoleID);
- // get CHoleBSEImgPtr
- CHoleBSEImgPtr GetHoleBSEImgPtr();
- protected:
- CHoleBSEImgPtr* m_HoleBSEImg;
- };
- typedef System::Collections::Generic::List<CHoleBSEImgClr^> CHoleBSEImgsListClr;
- }
|