00001 #ifndef CASTOR_NET_NETWORK_H 00002 #define CASTOR_NET_NETWORK_H 1 00003 00004 #include "asio.hpp" 00005 00006 namespace castor { namespace net { 00007 00008 class Network { 00009 00010 protected: 00011 00012 static char buffer[8192]; 00013 00014 public: 00015 00016 static asio::io_service ioService; 00017 00018 // void start() { ioService.run(); } 00019 00020 /* Network() { 00021 ioService.run(); 00022 std::cout << "RUN" << std::endl; 00023 }*/ 00024 }; 00025 00026 } } 00027 00028 #endif /* CASTOR_NET_NETWORK_H */ 00029