#ifndef IP_DISPATCHER_H #define IP_DISPATCHER_H #include "Helper/Singleton.h" #include "Dispatcher.h" class IpDispatcher : public Dispatcher, public Singleton { protected: //Singleton IpDispatcher(); //Singleton friend class Singleton; public: ~IpDispatcher(); }; #endif