Rev | Line | |
---|
[534] | 1 | // toiabsorber.h
|
---|
| 2 | // Eric Aubourg CEA/DAPNIA/SPP septembre 1999
|
---|
| 3 |
|
---|
| 4 | #ifndef TOIABSORBER_H
|
---|
| 5 | #define TOIABSORBER_H
|
---|
| 6 |
|
---|
| 7 | #include <set>
|
---|
| 8 | #include <map>
|
---|
| 9 | #include <deque>
|
---|
| 10 |
|
---|
| 11 | using namespace std;
|
---|
| 12 |
|
---|
| 13 | #include "toi.h"
|
---|
| 14 | #include "ark.h"
|
---|
| 15 |
|
---|
| 16 | class TOIProducer;
|
---|
| 17 |
|
---|
| 18 | class TOIAbsorber {
|
---|
| 19 | public:
|
---|
| 20 | virtual ~TOIAbsorber() {}
|
---|
| 21 | virtual void dataFeed(TOIProducer* source, TOI const& toi, long sampleNum, double value);
|
---|
| 22 | };
|
---|
| 23 |
|
---|
| 24 |
|
---|
| 25 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.