Blame |
Last modification |
View Log
| RSS feed
#ifndef _daq_h_
#define _daq_h_
class daq {
public:
unsigned int gData[16];
int start(int threshold, int time_set);
int count();
int save();
int append(char *filename);
int init();
int connect();
int disconnect();
daq();
~daq();
};
#endif