X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_Common.h;h=c1379efe62a43196f39f91f581d17c6239476c72;hb=60e95a5502a6940c6c27ce5d561b3c684b0b0a4f;hp=a2cc7884378b87a13006242531dc20f146aa88fb;hpb=dac57cd567b61aa9d889382d5408be80ee82d375;p=modules%2Fshaper.git diff --git a/src/Config/Config_Common.h b/src/Config/Config_Common.h index a2cc78843..c1379efe6 100644 --- a/src/Config/Config_Common.h +++ b/src/Config/Config_Common.h @@ -28,12 +28,12 @@ typedef xmlDoc *xmlDocPtr; struct _xmlDoc; //<< -/* +/*! * Returns true if theNode is XML ELEMENT node (not a "text" node ie). */ CONFIG_EXPORT bool isElementNode(xmlNodePtr theNode); -/* +/*! * Returns true if theNode is XML node with a given name. * Please note that this function should be called with NULL last argument. @@ -43,12 +43,12 @@ CONFIG_EXPORT bool isElementNode(xmlNodePtr theNode); */ CONFIG_EXPORT bool isNode(xmlNodePtr theNode, const char* theNodeName, ...); -/* +/*! * Checks is the given node is attribute (widget) node. */ CONFIG_EXPORT bool isWidgetNode(xmlNodePtr theNode); -/* +/*! * Every xml node has child. Even if there is no explicit * child nodes libxml gives the "Text node" as child. * @@ -57,7 +57,7 @@ CONFIG_EXPORT bool isWidgetNode(xmlNodePtr theNode); */ CONFIG_EXPORT bool hasChild(xmlNodePtr theNode); -/* +/*! * Returns named property for an id node as std::string and the parameters of the node. */ CONFIG_EXPORT bool getParametersInfo(xmlNodePtr theNode, std::string& outPropertyId, @@ -76,12 +76,12 @@ CONFIG_EXPORT bool getParametersInfo(xmlNodePtr theNode, std::string& outPropert */ CONFIG_EXPORT std::string library(const std::string& theLibName); -/* +/*! * Returns named property for a given node as std::string. */ CONFIG_EXPORT std::string getProperty(xmlNodePtr theNode, const char* thePropName); -/* +/*! * Checks if the given XML node has the given attribute, * if yes - returns it's bool value, if no, or if the value can not * be converted to bool - returns theDefault value. @@ -93,7 +93,7 @@ CONFIG_EXPORT bool getBooleanAttribute(xmlNodePtr theNode, const char* theAttributeName, bool theDefault); -/* +/*! * Returns normalized (lower case) version of string. * Should be used for case insensitive string matching. */