Added transmission code to the memory collector.
[aesalon.git] / modules / memory / src / marshal / Marshal.h
blob091053471639bc8ee4e53ecc6ffda0dbb611f6cc
1 #ifndef AesalonModule_memory_Marshal_H
2 #define AesalonModule_memory_Marshal_H
4 #include "marshal/Interface.h"
6 class MemoryMarshal : public Marshal::Interface {
7 public:
8 MemoryMarshal();
9 virtual ~MemoryMarshal();
11 virtual Comm::Packet *marshal(Comm::Packet *packet);
14 #endif