Began proof-of-concept memory module.
[aesalon.git] / modules / memory / src / marshal / Marshal.h
blobd431428e2d93e594667b6ef19c20acf48b854963
1 #ifndef AesalonModule_cpuTime_Marshal_H
2 #define AesalonModule_cpuTime_Marshal_H
4 #include "marshal/Interface.h"
6 class CpuTimeMarshal : public Marshal::Interface {
7 public:
8 CpuTimeMarshal();
9 virtual ~CpuTimeMarshal();
11 virtual Comm::Packet *marshal(Comm::Packet *packet);
14 #endif