Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 111 | f9daq | 1 | #ifndef _daq_h_ |
| 2 | #define _daq_h_ |
||
| 3 | class daq { |
||
| 4 | public: |
||
| 5 | unsigned int gData[16]; |
||
| 6 | int start(int threshold, int time_set); |
||
| 7 | int count(); |
||
| 8 | int save(); |
||
| 9 | int append(char *filename); |
||
| 10 | int init(); |
||
| 11 | int connect(); |
||
| 12 | int disconnect(); |
||
| 13 | daq(); |
||
| 14 | ~daq(); |
||
| 15 | }; |
||
| 16 | |||
| 17 | #endif |