00001 /** 00002 * @file Platform/Aperios1.3.2/NetHandler.h 00003 * 00004 * Class NetHandler : base-class for TCPHandler and UDPHandler 00005 * 00006 * @author <A href=mailto:robocup@m-wachter.de>Michael Wachter</A> 00007 */ 00008 00009 #ifndef _NetHandler_H_ 00010 #define _NetHandler_H_ 00011 00012 #include <stdio.h> 00013 #include <iostream.h> 00014 00015 /** 00016 * Class NetHandeler : base-class for TCPHandler and UDPHandler 00017 */ 00018 class NetHandler 00019 { 00020 public: 00021 virtual void sendPackage(int senderNumber,void* data,int size){}; 00022 }; 00023 00024 #endif
1.3.6