Rev | Line | |
---|
[310] | 1 | #ifndef TOISVR_H
|
---|
| 2 | #define TOISVR_H
|
---|
| 3 |
|
---|
| 4 | #include "toiiter.h"
|
---|
| 5 |
|
---|
| 6 | class TOISvr {
|
---|
| 7 | public:
|
---|
| 8 | TOISvr();
|
---|
| 9 |
|
---|
| 10 | void SetDirectory(string);
|
---|
| 11 | void SetFile(string);
|
---|
[342] | 12 | void AddFile(string);
|
---|
| 13 | void OnBoardRecorderFiles(bool);
|
---|
| 14 | void SetMJD0(double);
|
---|
[310] | 15 |
|
---|
| 16 | void SetTimeInterval(double tStart, double tEnd);
|
---|
| 17 |
|
---|
| 18 | void AddInfo(TOIKind kind, int index, bool triggering=true, bool interp=false);
|
---|
| 19 | void AddInfo(TOIKind kind, bool triggering=true, bool interp=false);
|
---|
| 20 |
|
---|
| 21 | TOIIter DoQuery();
|
---|
| 22 |
|
---|
| 23 |
|
---|
| 24 | protected:
|
---|
| 25 | TOIIter iter;
|
---|
| 26 | };
|
---|
| 27 |
|
---|
| 28 |
|
---|
| 29 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.