00001 #ifndef N2NC_NETHOST_H 00002 #define N2NC_NETHOST_H 00003 00004 #include <iostream> 00005 #include <cstdlib> 00006 00007 namespace n2nc { 00008 00009 namespace net { 00010 00014 class Host{ 00015 private: 00016 std::string m_hostname; 00017 public: 00018 Host(); 00019 Host(std::string &); 00020 00021 ~Host(); 00022 00023 }; 00024 00025 } 00026 00027 } 00028 00029 #endif