My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
InetAddress.h
Go to the documentation of this file.
1 // $Id: InetAddress.h,v 1.2 2011/08/26 23:59:35 eml Exp $
2 
3 #ifndef GCP_UTIL_INETADDRESS_H
4 #define GCP_UTIL_INETADDRESS_H
5 
15 #include <string>
16 
17 namespace gcp {
18  namespace util {
19 
20  class InetAddress {
21  public:
22 
26  InetAddress();
27 
31  virtual ~InetAddress();
32 
33  static std::string resolveName(std::string name, bool doThrow=true);
34 
35  }; // End class InetAddress
36 
37  } // End namespace util
38 } // End namespace gcp
39 
40 
41 
42 #endif // End #ifndef GCP_UTIL_INETADDRESS_H
virtual ~InetAddress()
Definition: InetAddress.cc:19
Definition: InetAddress.h:20
InetAddress()
Definition: InetAddress.cc:14