This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Classes | |
| class | StateAccess |
Enumerations | |
| enum | Opcode { OP_NONE, OP_ASSIGN, OP_ASSIGN_IDX, OP_ADD, OP_INCR, OP_INCR_IDX, OP_DEL, OP_PRINT, OP_EXPIRE } |
|
|
Definition at line 15 of file StateAccess.h.
00015 { // Op1 Op2 Op3 (Vals)
00016 OP_NONE,
00017 OP_ASSIGN, // new old
00018 OP_ASSIGN_IDX, // new old
00019 OP_ADD, // idx old
00020 OP_INCR, // idx new old
00021 OP_INCR_IDX, // idx new old
00022 OP_DEL, // idx old
00023 OP_PRINT, // args
00024 OP_EXPIRE // idx
00025 };
|
1.3.5