NetOceanDirect  2.4.0
OceanDirect .NET API
Lamp.h
1 #pragma once
2 #include "ManagedObject.h"
3 
4 namespace NetOceanDirect {
5 
6  public ref class Lamp : public ManagedObject<LampAPI>
7  {
8  Lamp();
9  public:
10  virtual ~Lamp() {};
11  static Lamp^ getInstance();
12 
25  void setEnable(long deviceID, int% errorCode, bool enable);
26 
27  bool isEnable(long deviceID, int% errorCode);
28 
29  private:
30  static Lamp^ strobe;
31 
32  };
33 }
Definition: Lamp.h:7
void setEnable(long deviceID, int% errorCode, bool enable)
Definition: Lamp.cpp:18
Definition: ManagedObject.h:8