[svn] commit: r2749 - /trunk/src/lib/config/config_data.h

BIND 10 source code commits bind10-changes at lists.isc.org
Mon Aug 16 23:49:42 UTC 2010


Author: jinmei
Date: Mon Aug 16 23:49:41 2010
New Revision: 2749

Log:
minor editorial cleanup: removed white spaces from blank lines

Modified:
    trunk/src/lib/config/config_data.h

Modified: trunk/src/lib/config/config_data.h
==============================================================================
--- trunk/src/lib/config/config_data.h (original)
+++ trunk/src/lib/config/config_data.h Mon Aug 16 23:49:41 2010
@@ -40,7 +40,7 @@
     /// Constructs a ConfigData option with no specification and an
     /// empty configuration.
     ConfigData() { _config = Element::createMap(); };
-    
+
     /// Constructs a ConfigData option with the given specification
     /// and an empty configuration.
     /// \param module_spec A ModuleSpec for the relevant module
@@ -71,21 +71,21 @@
 
     /// Returns the ModuleSpec associated with this ConfigData object
     const ModuleSpec getModuleSpec() { return (_module_spec); }
-    
+
     /// Set the ModuleSpec associated with this ConfigData object
     void setModuleSpec(ModuleSpec module_spec) { _module_spec = module_spec; };
-    
+
     /// Set the local configuration (i.e. all non-default values)
     /// \param config An ElementPtr pointing to a MapElement containing
     ///        *all* non-default configuration values. Existing values
     ///        will be removed.
     void setLocalConfig(ElementPtr config) { _config = config; }
-    
+
     /// Returns the local (i.e. non-default) configuration.
     /// \returns An ElementPtr pointing to a MapElement containing all
     ///          non-default configuration options.
     ElementPtr getLocalConfig() { return (_config); }
-    
+
     /// Returns a list of all possible configuration options as specified
     ///         by the ModuleSpec.
     /// \param identifier If given, show the items at the given identifier
@@ -97,7 +97,7 @@
     ///         location (or all possible identifiers if identifier==""
     ///         and recurse==false)
     ElementPtr getItemList(const std::string& identifier = "", bool recurse = false);
-    
+
     /// Returns all current configuration settings (both non-default and default).
     /// \return An ElementPtr pointing to a MapElement containing
     ///         string->value elements, where the string is the




More information about the bind10-changes mailing list