|
@@ -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 {
|