Parent Directory
|
Revision Log
Error proof version. Implemented all detectors packets plus all the main telemetries packets. Missing all the Init and Alarm packets. Disabled CRC control on VarDump, ArrDump, TabDump for CPU debugging needs (the data formats seems correct even if CRC get wrong)
| 1 | kusanagi | 2.1 | /** @file |
| 2 | * $Author: kusanagi $ | ||
| 3 | kusanagi | 3.0 | * $Date: 2004/10/17 12:28:38 $ |
| 4 | kusanagi | 2.1 | * $Revision: 2.1 $ |
| 5 | * | ||
| 6 | */ | ||
| 7 | |||
| 8 | #ifndef TECHMODEL_FILTER_H | ||
| 9 | #define TECHMODEL_FILTER_H | ||
| 10 | |||
| 11 | #include "event/Filter.h" | ||
| 12 | #include "event/PacketType.h" | ||
| 13 | #include "event/SubPacket.h" | ||
| 14 | #include <list> | ||
| 15 | #include <string> | ||
| 16 | |||
| 17 | using namespace std; | ||
| 18 | |||
| 19 | namespace pamela { | ||
| 20 | namespace techmodel { | ||
| 21 | |||
| 22 | class TechmodelFilter: public Filter { | ||
| 23 | private: | ||
| 24 | list<string> *forbiddenPackets; | ||
| 25 | public: | ||
| 26 | TechmodelFilter(list<string>*); | ||
| 27 | virtual void Init(void); | ||
| 28 | virtual bool CheckPacket(PacketType*); | ||
| 29 | virtual std::string GetVersionInfo(void) const; | ||
| 30 | ClassDef(TechmodelFilter, 1) | ||
| 31 | }; | ||
| 32 | } | ||
| 33 | } | ||
| 34 | #endif /* TECHMODEL_FILTER_H */ | ||
| 35 | |||
| 36 |
| ViewVC Help | |
| Powered by ViewVC 1.1.23 |