/*! * @file simple_sync.h * implementation of a network sync test */ #ifndef _SIMPLE_SYNC #define _SIMPLE_SYNC #include "synchronizeable.h" class SimpleSync : public Synchronizeable { public: SimpleSync(const char* name); virtual ~SimpleSync(); void debug(); private: int in; int out; int id; }; #endif /* _SIMPLE_SYNC */