Browse Source

[2270] Dhcp4ConfigParser members are now private.

Tomek Mrugalski 12 years ago
parent
commit
0589469f4a
1 changed files with 6 additions and 6 deletions
  1. 6 6
      src/bin/dhcp6/config_parser.cc

+ 6 - 6
src/bin/dhcp6/config_parser.cc

@@ -116,7 +116,7 @@ public:
         return (new DebugParser(param_name));
     }
 
-protected:
+private:
     /// name of the parsed parameter
     std::string param_name_;
 
@@ -187,7 +187,7 @@ public:
         storage_ = storage;
     }
 
-protected:
+private:
     /// pointer to the storage, where parsed value will be stored
     Uint32Storage* storage_;
 
@@ -257,7 +257,7 @@ public:
         storage_ = storage;
     }
 
-protected:
+private:
     /// pointer to the storage, where parsed value will be stored
     StringStorage* storage_;
 
@@ -319,7 +319,7 @@ public:
         return (new InterfaceListConfigParser(param_name));
     }
 
-protected:
+private:
     /// contains list of network interfaces
     vector<string> interfaces_;
 };
@@ -440,7 +440,7 @@ public:
         return (new PoolParser(param_name));
     }
 
-protected:
+private:
     /// @brief pointer to the actual Pools storage
     ///
     /// That is typically a storage somewhere in Subnet parser
@@ -546,7 +546,7 @@ public:
         CfgMgr::instance().addSubnet6(subnet);
     }
 
-protected:
+private:
 
     /// @brief creates parsers for entries in subnet definition
     ///