Go to the documentation of this file.00001 #ifndef USBAMP_H
00002 #define USBAMP_H
00003
00004 #include <Windows.h>
00005 #include <deque>
00006 #include "gUSBamp.h"
00007
00008 class USBamp {
00009 private:
00010 deque<LPSTR> callSequence;
00011 deque<HANDLE> devices;
00012 public:
00013 USBamp();
00014 ~USBamp();
00015 bool open(LPSTR);
00016 bool init(const int, const int);
00017 bool start();
00018 bool acquire();
00019 void getdata(int *data, int n);
00020 bool stop();
00021 bool close();
00022 };
00023
00024 #endif