00001
00002
00003
00004 #ifndef __XVR2_NET_IP_ADDRESS_H__
00005 #define __XVR2_NET_IP_ADDRESS_H__
00006 #include<xvr2/Object.h>
00007 #include<xvr2/String.h>
00008 #include<xvr2/Net/NetworkExceptions.h>
00009 #ifdef UNIX_SOCKETS
00010 #include<sys/socket.h>
00011 #include<sys/types.h>
00012 #include<netinet/in.h>
00013 #include<netdb.h>
00014 #endif
00015
00016 namespace xvr2 {
00017 namespace Net {
00018
00019 class IPAddress:public Object {
00020 protected:
00021 public:
00022 IPAddress();
00023 virtual ~IPAddress();
00024 };
00025 };
00026 };
00027
00028 #endif
00029