OTSControlFunExport.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784
  1. #pragma once
  2. /**
  3. @file
  4. @brief OTSControl DLL Interface provide for C#
  5. @author xiaoxing.zhang,Anna Hao
  6. @version 1.0.0.0
  7. @date 2017/6/28
  8. - 2017/6/28 1.0.0.0 xiaoxing.zhang developed SEM Interface
  9. - 2017/6/28 1.0.0.0 Anna Hao developed Scan Interface
  10. - 2017/6/29 1.0.0.0 Anna Hao developed EDS Interface
  11. - - 2017/7/3 1.0.0.0 xiaoxing.zhang Add log for SemInterface
  12. */
  13. #include "BSEImg.h"
  14. #include "COTSHardwareMgr.h"
  15. #include "Bruker/OTSBrukerImpl_const.h"
  16. #include <OTSFeatureClr.h>
  17. #include <BSEImgClr.h>
  18. #include <OTSParticleClr.h>
  19. using namespace System;
  20. using namespace System::Drawing;
  21. using namespace System::Collections::Generic;
  22. namespace NSOTSController
  23. {
  24. using namespace OTSController;
  25. using namespace OTSCOMMONCLR;
  26. public ref class COTSSimuControlClr
  27. {
  28. public:
  29. COTSSimuControlClr();
  30. ~COTSSimuControlClr();
  31. !COTSSimuControlClr();
  32. public:
  33. bool Connect();
  34. bool Disconnect();
  35. bool SetWorkingDistance(double a_dWorkingDistance);
  36. bool GetWorkingDistance(double% a_dWorkingDistance);
  37. bool SetMagnification(double a_dMag);
  38. bool GetMagnification(double% a_dMag);
  39. };
  40. public ref class COTSControlFunExport
  41. {
  42. public:
  43. COTSControlFunExport()
  44. {
  45. //m_LpHardWareMgr = NULL;
  46. /*m_LpSemBase = NULL;
  47. m_LpScanBase = NULL;
  48. m_LpEDSBase = NULL;*/
  49. m_LpHardWareMgr = new COTSHardwareMgr();
  50. m_LpSemBase = (m_LpHardWareMgr->GetSemControllerMgrPtr()).get();
  51. m_LpScanBase = (m_LpHardWareMgr->GetScanControllerPtr()).get();
  52. m_LpEDSBase = (m_LpHardWareMgr->GetEDSControllerPtr()).get();
  53. }
  54. ~COTSControlFunExport()
  55. {
  56. if (nullptr != m_LpHardWareMgr)
  57. {
  58. delete m_LpHardWareMgr;
  59. m_LpHardWareMgr = nullptr;
  60. }
  61. }
  62. !COTSControlFunExport()
  63. {
  64. if (nullptr != m_LpHardWareMgr)
  65. {
  66. delete m_LpHardWareMgr;
  67. m_LpHardWareMgr = nullptr;
  68. }
  69. }
  70. public:
  71. //void InitDevPoint();
  72. //获取当前电镜的ID号
  73. int GetSemType()
  74. {
  75. int ID = 0;
  76. ID = (int)m_LpSemBase->GetType();
  77. return ID;
  78. }
  79. bool IsConnected()
  80. {
  81. BOOL bRev = m_LpSemBase->IsConnected();
  82. return bRev;
  83. }
  84. //和电镜建立通讯连接
  85. bool ConncetSem()
  86. {
  87. BOOL bRev = m_LpSemBase->Connect();
  88. return bRev;
  89. }
  90. //断开电镜连接
  91. bool DisConnectSem()
  92. {
  93. BOOL bRev = m_LpSemBase->Disconnect();
  94. return bRev;
  95. }
  96. //获得扫描区域大小
  97. Size GetSemScanField100()
  98. {
  99. Size sz;
  100. CSize size = m_LpSemBase->GetScanField100();
  101. sz.Width = size.cx;
  102. sz.Height = size.cy;
  103. return sz;
  104. }
  105. //设置扫描区域大小
  106. void SetSemScanField100(Size sz)
  107. {
  108. CSize size;
  109. size.cx = sz.Width;
  110. size.cy = sz.Height;
  111. m_LpSemBase->SetScanField100(size);
  112. }
  113. bool GetSemBeamBlank(long% a_nBeamBlank)
  114. {
  115. long lBBlank = 0;
  116. BOOL bRev = m_LpSemBase->GetBeamBlank(lBBlank);
  117. a_nBeamBlank = lBBlank;
  118. return bRev;
  119. }
  120. bool SetSemBeamBlank(long a_nBeamBlank)
  121. {
  122. BOOL bRev = m_LpSemBase->SetBeamBlank(a_nBeamBlank);
  123. return bRev;
  124. }
  125. //获得亮度
  126. bool GetSemBrightness(double% a_dBrightness)
  127. {
  128. double dBriness = 0;
  129. BOOL bRev = m_LpSemBase->GetBrightness(dBriness);
  130. a_dBrightness = dBriness;
  131. return bRev;
  132. }
  133. //设置亮度
  134. bool SetSemBrightness(double a_dBrightness)
  135. {
  136. BOOL bRev = m_LpSemBase->SetBrightness(a_dBrightness);
  137. return bRev;
  138. }
  139. //获得对比度
  140. bool GetSemContrast(double% a_dContrast)
  141. {
  142. double dContrast = 0;
  143. BOOL bRev = m_LpSemBase->GetContrast(dContrast);
  144. a_dContrast = dContrast;
  145. return bRev;
  146. }
  147. //设置对比度
  148. bool SetSemContrast(double a_dContrast)
  149. {
  150. BOOL bRev = m_LpSemBase->SetContrast(a_dContrast);
  151. return bRev;
  152. }
  153. //获得Z轴的工作距离
  154. bool GetSemWorkingDistance(double% a_dWorkingDistance)
  155. {
  156. double dWDistance = 0;
  157. BOOL bRev = m_LpSemBase->GetWorkingDistance(dWDistance);
  158. a_dWorkingDistance = dWDistance;
  159. return bRev;
  160. }
  161. // 设置Z轴工作距离
  162. bool SetSemWorkingDistance(double a_dWorkingDistance)
  163. {
  164. BOOL bRev = m_LpSemBase->SetWorkingDistance(a_dWorkingDistance);
  165. return bRev;
  166. }
  167. // 获得电压值
  168. bool GetSemHighTension(double% a_dKV)
  169. {
  170. double dDKV = 0;
  171. BOOL bRev = m_LpSemBase->GetHighTension(dDKV);
  172. a_dKV = dDKV;
  173. return bRev;
  174. }
  175. // 设置电压值
  176. bool SetSemHighTension(double a_dKV)
  177. {
  178. BOOL bRev = m_LpSemBase->SetHighTension(a_dKV);
  179. return bRev;
  180. }
  181. //获得放大倍数
  182. bool GetSemMagnification(double% a_dMagnification)
  183. {
  184. double dMagni = 0;
  185. BOOL bRev = m_LpSemBase->GetMagnification(dMagni);
  186. a_dMagnification = dMagni;
  187. return bRev;
  188. }
  189. //设置放大倍数
  190. bool SetSemMagnification(double a_dMagnification)
  191. {
  192. BOOL bRev = m_LpSemBase->SetMagnification(a_dMagnification);
  193. return bRev;
  194. }
  195. //获得扫描区域尺寸
  196. bool GetSemScanFieldSize(double% a_dScanFieldSizeX, double% a_dScanFieldSizeY)
  197. {
  198. double dFSizeX = 0;
  199. double dFSizeY = 0;
  200. BOOL bRev = m_LpSemBase->GetScanFieldSize(dFSizeX, dFSizeY);
  201. a_dScanFieldSizeX = dFSizeX;
  202. a_dScanFieldSizeY = dFSizeY;
  203. return bRev;
  204. }
  205. //设置扫描区域尺寸
  206. bool SetSemScanFieldSizeX(double a_dScanFieldSizeX)
  207. {
  208. BOOL bRev = m_LpSemBase->SetScanFieldSizeX(a_dScanFieldSizeX);
  209. return bRev;
  210. }
  211. bool GetSemHTOnOff(BOOL% a_bHTValue)
  212. {
  213. BOOL bHTV = FALSE;
  214. BOOL bRev = m_LpSemBase->GetHTOnOff(bHTV);
  215. a_bHTValue = bHTV;
  216. return bRev;
  217. }
  218. bool SetSemHTOnOff(BOOL a_bHTValue)
  219. {
  220. BOOL bRev = m_LpSemBase->SetHTOnOff(a_bHTValue);
  221. return bRev;
  222. }
  223. //获得电镜位置
  224. bool GetSemPositionXY(double% a_dPositionX, double% a_dPositionY, double% a_dPositionR)
  225. {
  226. double dPosX = 0;
  227. double dPosY = 0;
  228. double dPosR = 0;
  229. BOOL bRev = m_LpSemBase->GetPositionXY(dPosX, dPosY, dPosR);
  230. a_dPositionX = dPosX;
  231. a_dPositionY = dPosY;
  232. a_dPositionR = dPosR;
  233. return bRev;
  234. }
  235. //设置电镜位置
  236. bool SetSemPositionXY(double a_dPositionX, double a_dPositionY, double a_dPositionR)
  237. {
  238. BOOL bRev = m_LpSemBase->SetPositionXY(a_dPositionX, a_dPositionY, a_dPositionR);
  239. return bRev;
  240. }
  241. //获得焦点尺寸
  242. bool GetSemSpotSize(double% a_dSpotSize)
  243. {
  244. double dPSize = 0;
  245. BOOL bRev = m_LpSemBase->GetSpotSize(dPSize);
  246. a_dSpotSize = dPSize;
  247. return bRev;
  248. }
  249. //设置焦点尺寸
  250. bool SetSemSpotSize(double a_dSpotSize)
  251. {
  252. BOOL bRev = m_LpSemBase->SetSpotSize(a_dSpotSize);
  253. return bRev;
  254. }
  255. // 获得扫描方式
  256. bool GetSemScanMode(long% a_nScanMode)
  257. {
  258. long lSMode = 0;
  259. BOOL bRev = m_LpSemBase->GetScanMode(lSMode);
  260. a_nScanMode = lSMode;
  261. return bRev;
  262. }
  263. //设置扫描方式
  264. bool SetSemScanMode(long a_nScanMode)
  265. {
  266. BOOL bRev = m_LpSemBase->SetScanMode(a_nScanMode);
  267. return bRev;
  268. }
  269. bool SetSemScanExternal(bool external)
  270. {
  271. bool bRev = false;
  272. try
  273. {
  274. bRev = m_LpSemBase->SetScanExternal(external);
  275. }
  276. catch (const std::exception&)
  277. {
  278. bRev = false;
  279. }
  280. return bRev;
  281. }
  282. int GetSemExternalMode()
  283. {
  284. BOOL bRev = m_LpSemBase->GetExternalMode();
  285. return bRev;
  286. }
  287. //移动电镜到指定的位置
  288. bool MoveSEMToPoint(double dPosX, double dPosY, double dRotation)
  289. {
  290. double dRota = dRotation;
  291. CPoint cPos;
  292. cPos.x = (LONG)dPosX;
  293. cPos.y = (LONG)dPosY;
  294. bool bRev = m_LpSemBase->MoveSEMToPoint(cPos, dRotation);
  295. return bRev;
  296. }
  297. // 释放
  298. void FreeHardware()
  299. {
  300. if (NULL != m_LpHardWareMgr)
  301. {
  302. if (m_LpSemBase != NULL)
  303. {
  304. if (m_LpSemBase->IsConnected())
  305. {
  306. m_LpSemBase->Disconnect();
  307. }
  308. delete m_LpSemBase;
  309. }
  310. if (m_LpScanBase != NULL)
  311. {
  312. m_LpScanBase->FinishedInstance();
  313. delete m_LpScanBase;
  314. }
  315. if (m_LpEDSBase!= NULL)
  316. {
  317. m_LpEDSBase->FinishedInstance();
  318. delete m_LpEDSBase;
  319. }
  320. //delete m_LpHardWareMgr;
  321. m_LpHardWareMgr = NULL;
  322. }
  323. }
  324. //EDS Interface
  325. //获取EDS名称
  326. //函数名称:GetEDSName()
  327. //输入参数:无
  328. //输出参数:类型:int,设备ID标识
  329. String^ GetEDSName()
  330. {
  331. CString a_str = (m_LpEDSBase->GetName());
  332. String^ strOut = gcnew String(a_str);
  333. return strOut;
  334. }
  335. //获取EDS类型,Bruker是3.
  336. //函数名称:int EDSGetType()
  337. //输入参数:无
  338. //输出参数:类型:int,设备ID标识
  339. int EDSGetType()
  340. {
  341. int a_type = (int)EDSController::EDS_ID::BRUKER;
  342. return a_type;
  343. }
  344. //EDS进程终止
  345. //函数名称:void EDSFinishedInstance()
  346. //输入参数:无
  347. //输出参数:无
  348. void EDSFinishedInstance()
  349. {
  350. m_LpEDSBase->FinishedInstance();
  351. }
  352. //EDS初始化
  353. //函数名称:bool EDSInit()
  354. //输入参数:无
  355. //输出参数:类型:bool,true,设备申请成功
  356. // false,设备申请失败
  357. bool EDSInit()
  358. {
  359. bool bRet = m_LpEDSBase->Init();
  360. return bRet;
  361. }
  362. //是否支持Xray采集
  363. //函数名称:bool IsSupportSetCollection()
  364. //输入参数:无
  365. //输出参数:类型:bool,true,支持采集
  366. // false,不支持采集
  367. bool IsSupportSetCollection()
  368. {
  369. bool bRet = m_LpEDSBase->IsSupportSetCollection();
  370. return bRet;
  371. }
  372. bool CollectSpectrum(unsigned long a_nMilliseconds, Point a_oPoint, array<unsigned long>^% a_XrayData);
  373. bool CollectSpectrum(unsigned long a_nMilliseconds, array<unsigned long>^% a_XrayData, unsigned long a_nBufferSize);
  374. bool CollectSpectrum(unsigned long a_nMilliseconds, array<unsigned long>^% a_XrayData);
  375. bool GetXRayByPoints(unsigned long a_nMilliseconds, array<Point>^ points, array<array<unsigned long>^>^% a_XrayData, array<String^>^% a_strEleResult, bool bQuant);
  376. bool GetXRayByPoints(unsigned long a_nMilliseconds, array<Point>^ points, array<COTSParticleClr^>^ parts, bool bQuant);
  377. bool GetXRayBySinglePoint(unsigned long a_nMilliseconds, Point point, array<unsigned long>^% a_XrayData, String^% a_strEleResult, bool bQuant);
  378. bool GetXRayByFeatures(unsigned long a_nMilliseconds, array<COTSFeatureClr^>^ feas,array<array<unsigned long>^>^% a_XrayData, array<String^>^% a_strEleResult, bool bQuant);
  379. bool GetXRayByFeatures(unsigned long a_nMilliseconds, array<COTSParticleClr^>^ parts, bool bQuant);
  380. bool GetXRayBySingleFeature(unsigned long a_nMilliseconds, COTSFeatureClr^ feature, array<unsigned long>^% a_XrayData, String^% a_strEleResult, bool bQuant);
  381. // analysis elements
  382. bool GetXRayElements(unsigned long a_nMilliseconds, array<unsigned long>^% a_XrayData, int^% a_nElementNum, String^% a_strResult);
  383. // analysis elements
  384. bool GetXRayAndElements(unsigned long a_nMilliseconds, int a_BSEX, int a_BSEY, array<unsigned long>^% a_XrayData, int^% a_nElementNum, String^% a_strResult);
  385. /// Set Amp Time Index for all detectors
  386. bool SetAmpTimeIndex(long a_lvalue)
  387. {
  388. bool bRet = m_LpEDSBase->SetAmpTimeIndex(a_lvalue);
  389. return bRet;
  390. }
  391. /// get live time
  392. float GetLiveTime(void)
  393. {
  394. float fRet = m_LpEDSBase->GetLiveTime();
  395. return fRet;
  396. }
  397. /// get x-ray point collection limit
  398. long GetMaxPointLimit(void)
  399. {
  400. long lRet = m_LpEDSBase->GetMaxPointLimit();
  401. return lRet;
  402. }
  403. DWORD GetNumberOfChannels(void)
  404. {
  405. DWORD nRet = m_LpEDSBase->GetNumberOfChannels();
  406. return nRet;
  407. }
  408. //获取图像数据14741238434
  409. int AcquireBSEImage(int a_nMatrixIndex, int nReads, int nDwell, array<System::Byte>^% a_ImgData);
  410. //获取图像数据14741238434
  411. bool AcquireBSEImage(int a_nMatrixIndex, int nReads, int nDwell, CBSEImgClr^% a_ImgData)
  412. {
  413. /*int bRet = 0;
  414. CSize sz;*/
  415. //int height, width;
  416. CBSEImgPtr pbseImg = nullptr;
  417. pbseImg = m_LpScanBase->AcquireBSEImage(a_nMatrixIndex, nReads, nDwell);
  418. a_ImgData = gcnew CBSEImgClr(pbseImg);
  419. return true;
  420. }
  421. // 初始化
  422. bool ScanInit()
  423. {
  424. bool bRet = m_LpScanBase->Init();
  425. return bRet;
  426. }
  427. /// instance termination
  428. void ScanFinishedInstance()
  429. {
  430. m_LpScanBase->FinishedInstance();
  431. }
  432. int GetScanType()
  433. {
  434. int nRet = (int)ScanController::SCANNER_ID::BRUKER;
  435. return nRet;
  436. }
  437. Size GetMatrixSize(int a_nMatrixIndex)
  438. {
  439. CSize cs;
  440. cs = m_LpScanBase->GetMatrixSize(a_nMatrixIndex);
  441. Size aa;
  442. aa.Height = (int)cs.cy;
  443. aa.Width = (int)cs.cx;
  444. return aa;
  445. }
  446. // Start Scan Table
  447. bool StartScanTable(int a_nMatrixIndex, unsigned int nP, array<System::Int16>^ pnxx, array<System::Int16>^ pnyy)
  448. {
  449. int*pnx = new int[nP];
  450. int*pny = new int[nP];
  451. memset(pnx, 0, sizeof(int)*nP);
  452. memset(pny, 0, sizeof(int)*nP);
  453. bool bRet = false;
  454. if (m_LpScanBase->StartScanTable(a_nMatrixIndex, nP, pnx, pny))
  455. {
  456. for (int i = 0; i <(int) nP; i++)
  457. {
  458. pnxx[i] = pnx[i];
  459. pnyy[i] = pny[i];
  460. }
  461. bRet = true;
  462. }
  463. else
  464. {
  465. bRet = false;
  466. }
  467. delete[] pny;
  468. delete[] pnx;
  469. return bRet;
  470. }
  471. // set Image Size
  472. bool SetImageSize(long nWidth,long nHeight)
  473. {
  474. bool bRet = m_LpScanBase->SetImageSize(nWidth,nHeight);
  475. return bRet;
  476. }
  477. /// set dwell time
  478. bool SetDwellTime(long nDwellTime)
  479. {
  480. bool bRet = m_LpScanBase->SetDwellTime(nDwellTime);
  481. return bRet;
  482. }
  483. /*Size GetFrameResolutionByIndex(const long a_nIndex)
  484. {
  485. CSize cs;
  486. cs = m_LpScanBase->GetFrameResolutionByIndex(a_nIndex);
  487. Size aa;
  488. aa.Height = (int)cs.cx;
  489. aa.Width = (int)cs.cy;
  490. return aa;
  491. }
  492. bool SetFrameResolutionByIndex(const long a_nIndex)
  493. {
  494. bool bRet = m_LpScanBase->SetFrameResolutionByIndex(a_nIndex);
  495. return bRet;
  496. }*/
  497. long GetDwellTimeByIndex(const long a_nIndex)
  498. {
  499. long lRet = m_LpScanBase->GetDwellTimeByIndex(a_nIndex);
  500. return lRet;
  501. }
  502. bool SetDwellTimeByIndex(const long a_nIndex)
  503. {
  504. bool bRet = m_LpScanBase->SetDwellTimeByIndex(a_nIndex);
  505. return bRet;
  506. }
  507. bool SetScanFieldSize(const int a_nWidth, const int a_nHeight)
  508. {
  509. bool bRet =(bool)m_LpScanBase->SetScanFieldSize(a_nWidth, a_nHeight);
  510. return bRet;
  511. }
  512. bool SetEMPosition(const int a_nPosX, const int a_nPosY)
  513. {
  514. bool bRet = (bool)m_LpScanBase->SetScanFieldSize(a_nPosX, a_nPosY);
  515. return bRet;
  516. }
  517. Size GetScanRange()
  518. {
  519. CSize cs = m_LpScanBase->GetScanRange();
  520. Size aa;
  521. aa.Height = (int)cs.cx;
  522. aa.Width = (int)cs.cy;
  523. return aa;
  524. }
  525. int GetScanStepSize()
  526. {
  527. int nRet = m_LpScanBase->GetScanStepSize();
  528. return nRet;
  529. }
  530. int GetInterPixelDwell()
  531. {
  532. int nRet = m_LpScanBase->GetInterPixelDwell();
  533. return nRet;
  534. }
  535. int GetNumberOfReads()
  536. {
  537. int nRet = m_LpScanBase->GetNumberOfReads();
  538. return nRet;
  539. }
  540. double GetMagnification()
  541. {
  542. double nRet = m_LpScanBase->GetMagnification();
  543. return nRet;
  544. }
  545. void SetScanRange(Size cs)
  546. {
  547. CSize sz;
  548. sz.cx = (LONG)cs.Height;
  549. sz.cy = (LONG)cs.Width;
  550. m_LpScanBase->SetScanRange(sz);
  551. }
  552. void SetScanStepSize(int size)
  553. {
  554. m_LpScanBase->SetScanStepSize(size);
  555. }
  556. void SetInterPixelDwell(int i)
  557. {
  558. m_LpScanBase->SetInterPixelDwell(i);
  559. }
  560. void SetNumberOfReads(int i)
  561. {
  562. m_LpScanBase->SetNumberOfReads(i);
  563. }
  564. void SetMagnification(double mag)
  565. {
  566. m_LpScanBase->SetMagnification(mag);
  567. }
  568. bool ScanIsBruker()
  569. {
  570. bool bRet = (bool)m_LpScanBase->IsBruker();
  571. return bRet;
  572. }
  573. bool SetAndStartScan(void)
  574. {
  575. bool bRet = (bool)m_LpScanBase->SetAndStartScan();
  576. return bRet;
  577. }
  578. bool MoveBeamTo(Point a_beamPos)
  579. {
  580. CPoint pt;
  581. pt.x = a_beamPos.X;
  582. pt.y = a_beamPos.Y;
  583. bool bRet = (bool)m_LpScanBase->MoveBeamTo(pt);
  584. return bRet;
  585. }
  586. bool SetPointScan(int a_nMatrixIndex)
  587. {
  588. bool bRet = (bool)m_LpScanBase->SetPointScan(a_nMatrixIndex);
  589. return bRet;
  590. }
  591. private:
  592. // COTSSEMBruker* m_LpSemBruker;
  593. COTSSemBase* m_LpSemBase;
  594. //Scan
  595. COTSScanBase* m_LpScanBase;
  596. //EDS
  597. COTSEDSBase* m_LpEDSBase;
  598. //COTSHardwareMgr
  599. COTSHardwareMgr* m_LpHardWareMgr;
  600. };
  601. }