NetOceanDirect  2.4.0
OceanDirect .NET API
Shutter.h
1 #pragma once
2 #include "ManagedObject.h"
3 
4 namespace NetOceanDirect {
5 
6  public ref class Shutter : public ManagedObject<ShutterAPI>
7  {
8  Shutter();
9  public:
10  virtual ~Shutter() {};
11  static Shutter^ getInstance();
12 
24  void setShutterOpen(long deviceID, int% errorCode, bool opened);
25 
37  bool getShutterState(long deviceID, int% errorCode);
38 
39  private:
40  static Shutter^ shutter;
41  };
42 
43 }
44 
Definition: ManagedObject.h:8
Definition: Shutter.h:7
void setShutterOpen(long deviceID, int% errorCode, bool opened)
Definition: Shutter.cpp:22
bool getShutterState(long deviceID, int% errorCode)
Definition: Shutter.cpp:28