diff options
author | Stephen Morris <stephen@isc.org> | 2012-11-16 15:15:45 +0100 |
---|---|---|
committer | Stephen Morris <stephen@isc.org> | 2012-11-16 15:15:45 +0100 |
commit | 3ba0299ad2b5151e9c822977ec0d1b4df00dbf52 (patch) | |
tree | 6519850049482a250856875787ce2900ce6078ac /src/lib/dhcp/option4_addrlst.h | |
parent | [2475] Split dhcp files into dhcp and dhcpsrv directories (diff) | |
download | kea-3ba0299ad2b5151e9c822977ec0d1b4df00dbf52.tar.xz kea-3ba0299ad2b5151e9c822977ec0d1b4df00dbf52.zip |
[2475] Put #include directives in correct order
Also fix some issues from the review.
Diffstat (limited to 'src/lib/dhcp/option4_addrlst.h')
-rw-r--r-- | src/lib/dhcp/option4_addrlst.h | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/src/lib/dhcp/option4_addrlst.h b/src/lib/dhcp/option4_addrlst.h index 01a8a4b894..b266cbf0a9 100644 --- a/src/lib/dhcp/option4_addrlst.h +++ b/src/lib/dhcp/option4_addrlst.h @@ -12,17 +12,19 @@ // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR // PERFORMANCE OF THIS SOFTWARE. -#ifndef OPTION4_ADDRLST_H_ -#define OPTION4_ADDRLST_H_ +#ifndef OPTION4_ADDRLST_H +#define OPTION4_ADDRLST_H -#include <string> -#include <map> -#include <vector> -#include <boost/shared_ptr.hpp> -#include <boost/shared_array.hpp> #include <asiolink/io_address.h> -#include <util/buffer.h> #include <dhcp/option.h> +#include <util/buffer.h> + +#include <boost/shared_array.hpp> +#include <boost/shared_ptr.hpp> + +#include <map> +#include <string> +#include <vector> namespace isc { namespace dhcp { @@ -162,4 +164,4 @@ protected: } // namespace isc::dhcp } // namespace isc -#endif +#endif // OPTION4_ADDRLST_H |