Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / Config / Config_FeatureReader.cpp
index bdd6e0801e09f4661816e72a896ac7e7f3d05011..69d7176e4f22c195114462d25f64a0b0479afdd2 100644 (file)
@@ -24,7 +24,6 @@
 #include <iostream>
 #endif
 
-
 Config_FeatureReader::Config_FeatureReader(const std::string& theXmlFile,
                                            const std::string& theLibraryName,
                                            const char* theEventGenerated)
@@ -54,12 +53,12 @@ void Config_FeatureReader::processNode(xmlNodePtr theNode)
     //If a feature has xml definition for it's widget:
     aMessage.setUseInput(hasChild(theNode));
     aEvLoop->send(aMessage);
-  //The m_last* variables always defined before fillFeature() call. XML is a tree.
+    //The m_last* variables always defined before fillFeature() call. XML is a tree.
   } else if (isNode(theNode, NODE_GROUP, NULL)) {
     myLastGroup = getProperty(theNode, _ID);
   } else if (isNode(theNode, NODE_WORKBENCH, NULL)) {
     myLastWorkbench = getProperty(theNode, _ID);
-  //Process SOURCE, VALIDATOR nodes.
+    //Process SOURCE, VALIDATOR nodes.
   }
   Config_XMLReader::processNode(theNode);
 }
@@ -69,8 +68,7 @@ bool Config_FeatureReader::processChildren(xmlNodePtr theNode)
   return isNode(theNode, NODE_WORKBENCH, NODE_GROUP, NODE_FEATURE, NULL);
 }
 
-void Config_FeatureReader::fillFeature(xmlNodePtr theNode,
-                                       Config_FeatureMessage& outFeatureMessage)
+void Config_FeatureReader::fillFeature(xmlNodePtr theNode, Config_FeatureMessage& outFeatureMessage)
 {
   outFeatureMessage.setId(getProperty(theNode, _ID));
   outFeatureMessage.setPluginLibrary(myLibraryName);
@@ -78,7 +76,7 @@ void Config_FeatureReader::fillFeature(xmlNodePtr theNode,
 
   bool isInternal = isInternalFeature(theNode);
   outFeatureMessage.setInternal(isInternal);
-  if(isInternal) {
+  if (isInternal) {
     //Internal feature has no visual representation.
     return;
   }
@@ -94,7 +92,7 @@ bool Config_FeatureReader::isInternalFeature(xmlNodePtr theNode)
 {
   std::string prop = getProperty(theNode, FEATURE_INTERNAL);
   std::transform(prop.begin(), prop.end(), prop.begin(), ::tolower);
-  if(prop.empty() || prop == "false" || prop == "0") {
+  if (prop.empty() || prop == "false" || prop == "0") {
     return false;
   }
   return true;