00001 #ifndef __ROUTER_INTERFACE_H 00002 #define __ROUTER_INTERFACE_H 00003 00004 #include "Export.h" 00005 #include "RakNetTypes.h" 00006 00008 class RAK_DLL_EXPORT RouterInterface 00009 { 00010 public: 00011 RouterInterface() {} 00012 virtual ~RouterInterface() {} 00013 00014 virtual bool Send( const char *data, BitSize_t bitLength, PacketPriority priority, PacketReliability reliability, char orderingChannel, SystemAddress systemAddress )=0; 00015 }; 00016 00017 #endif