1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef ACCESSOR_H #define ACCESSOR_H #include <iostream> enum Accessor { IDLE, WRITE, MEM, EXEC, DCDE, FETCH, L1CACHE, SIDE, }; std::ostream &operator<<(std::ostream &os, Accessor a); #endif /* ACCESSOR_H_INCLUDED */