From 0dc861f4c32cfd154904819d5c4b8dff71fdc47c Mon Sep 17 00:00:00 2001 From: Tomek Mrugalski Date: Fri, 27 Jan 2012 14:33:35 +0100 Subject: [1531] Doxygen warnings removed in DHCP code. --- src/lib/dhcp/option4_addrlst.cc | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'src/lib/dhcp/option4_addrlst.cc') diff --git a/src/lib/dhcp/option4_addrlst.cc b/src/lib/dhcp/option4_addrlst.cc index 88eb915427..f8fb61fb3e 100644 --- a/src/lib/dhcp/option4_addrlst.cc +++ b/src/lib/dhcp/option4_addrlst.cc @@ -23,10 +23,12 @@ #include using namespace std; -using namespace isc::dhcp; using namespace isc::util; using namespace isc::asiolink; +namespace isc { +namespace dhcp { + Option4AddrLst::Option4AddrLst(uint8_t type) :Option(V4, type) { } @@ -39,8 +41,8 @@ Option4AddrLst::Option4AddrLst(uint8_t type, const AddressContainer& addrs) Option4AddrLst::Option4AddrLst(uint8_t type, - vector::const_iterator first, - vector::const_iterator last) + std::vector::const_iterator first, + std::vector::const_iterator last) :Option(V4, type) { if ( (distance(first, last) % V4ADDRESS_LEN) ) { isc_throw(OutOfRange, "DHCPv4 Option4AddrLst " << type_ @@ -133,3 +135,6 @@ std::string Option4AddrLst::toText(int indent /* =0 */ ) { return tmp.str(); } + +} // end of isc::dhcp namespace +} // end of isc namespace -- cgit v1.2.3