NetOceanDirect  1.31.0
OceanDirect .NET API
Eeprom.h
1 #pragma once
2 #include "ManagedObject.h"
3 
4 namespace NetOceanDirect {
5 
6  public ref class Eeprom : public ManagedObject<EepromAPI>
7  {
8  Eeprom();
9  public:
10  virtual ~Eeprom() {};
11  static Eeprom^ getInstance();
12 
23  array<unsigned char>^ readSlot(long deviceID, int% errorCode, int slotNumber, int bufferLength);
24 
25  private:
26  static Eeprom^ eprom;
27 
28  };
29 }
30 
Definition: Eeprom.h:7
array< unsigned char > readSlot(long deviceID, int% errorCode, int slotNumber, int bufferLength)
Definition: Eeprom.cpp:18
Definition: ManagedObject.h:8