• Main Page
  • Namespaces
  • Classes
  • Files
  • File List
  • File Members

ibrcommon/ibrcommon/net/NetAddress.cpp

Go to the documentation of this file.
00001 /*
00002  * NetAddress.cpp
00003  *
00004  *  Created on: 21.10.2010
00005  *      Author: morgenro
00006  */
00007 
00008 #include "ibrcommon/net/NetAddress.h"
00009 
00010 namespace ibrcommon
00011 {
00012         NetAddress::NetAddress(const ADDR_TYPE &t, const std::string &address, const int m)
00013          : type(t), mask(m), _address(address)
00014         {
00015         }
00016 
00017         NetAddress::~NetAddress()
00018         {
00019         }
00020 
00021         const std::string NetAddress::toString() const
00022         {
00023                 return _address;
00024         }
00025 }

Generated on Thu Nov 11 2010 09:49:47 for IBR-DTNSuite by  doxygen 1.7.1