From: Tomek Mrugalski Date: Thu, 25 Aug 2016 14:54:40 +0000 (+0200) Subject: [4626] methods reordered X-Git-Tag: trac4631_base~1^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cee3a439b5064f3343ed90a4843e89ad424ef9da;p=thirdparty%2Fkea.git [4626] methods reordered --- diff --git a/src/lib/dhcpsrv/client_class_def.h b/src/lib/dhcpsrv/client_class_def.h index 82084aded1..51fb7e2544 100644 --- a/src/lib/dhcpsrv/client_class_def.h +++ b/src/lib/dhcpsrv/client_class_def.h @@ -126,6 +126,12 @@ public: sname_ = sname; } + /// @brief returns server-hostname value + /// @return the vector that contains server-hostname (may be empty if not defined) + const std::string& getSname() const { + return (sname_); + } + /// @brief sets the boot-file-name value /// /// @param filename the value to be set @@ -133,12 +139,6 @@ public: filename_ = filename; } - /// @brief returns server-hostname value - /// @return the vector that contains server-hostname (may be empty if not defined) - const std::string& getSname() const { - return (sname_); - } - /// @brief returns boot-file-name value /// @return the vector that contains boot-file-name (may be empty if not defined) const std::string& getFilename() const {