source: drsdaq/SlowData.h@ 44

Last change on this file since 44 was 36, checked in by ogrimm, 15 years ago
Various changes, see History.txt
File size: 392 bytes
Line 
1#ifndef SLOWDATA_H_SEEN
2#define SLOWDATA_H_SEEN
3
4#include <stdlib.h>
5#include <stdio.h>
6
7class SlowData {
8
9 class DAQReadout *m;
10 const char *Issuer;
11 FILE *SlowdataFile;
12 bool NewEntryCalled;
13 bool InternalCall;
14
15 public:
16 SlowData(class DAQReadout*, const char*, char*);
17 ~SlowData();
18
19 bool NewEntry(char*);
20 bool AddToEntry(char*, ...);
21};
22
23#endif
Note: See TracBrowser for help on using the repository browser.