FLImaging 6.6.27.1
DeviceAxlBase.h
1#pragma once
2
3#include "DeviceBase.h"
4
5
6namespace FLImaging
7{
8 namespace Devices
9 {
10 class CInternalDeviceAxlBase;
11
12 class FL_EXPORT CDeviceAxlBase
13 {
14 public:
15 CDeviceAxlBase();
16 virtual ~CDeviceAxlBase();
17
18 virtual const CResult Initialize();
19 virtual const CResult Terminate();
20
21 virtual bool IsInitialized() const;
22
23 virtual bool CheckDeviceLibraries() const;
24
25 protected:
26 CInternalDeviceAxlBase* m_pInternal;
27 };
28 }
29}
30
Definition AutoFileCleaner.h:17