Parent Directory | Revision Log
Initial revision
1 | |
2 | #ifndef VARDUMP_RECORD_H |
3 | #define VARDUMP_RECORD_H |
4 | #include <TArrayI.h> |
5 | #include "../SubPacket.h" |
6 | |
7 | namespace pamela { |
8 | /** |
9 | * VarDumpRecord data Wrapper |
10 | * |
11 | * Each pamela::VarDumpRecord is a CPU specific variable. |
12 | */ |
13 | class VarDumpRecord: public TObject { |
14 | private: |
15 | |
16 | public: |
17 | /** |
18 | * The variable ID. |
19 | */ |
20 | UINT8 VAR_ID; |
21 | |
22 | /** |
23 | * The variable value. |
24 | */ |
25 | UINT32 VAR_VALUE; |
26 | VarDumpRecord(void); |
27 | ~VarDumpRecord(void){}; |
28 | ClassDef(VarDumpRecord, 1) |
29 | }; |
30 | } |
31 | |
32 | #endif /* VARDUMP_RECORD_H */ |
33 |
ViewVC Help | |
Powered by ViewVC 1.1.23 |