[svn-commits] eliel: branch group/appdocsxml r152439 - /team/group/appdocsxml/include/aster...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Oct 28 13:31:33 CDT 2008


Author: eliel
Date: Tue Oct 28 13:31:32 2008
New Revision: 152439

URL: http://svn.digium.com/view/asterisk?view=rev&rev=152439
Log:
Add some doxygen (to prevent warnings, not so usefull, the functions are self explained).


Modified:
    team/group/appdocsxml/include/asterisk/xml.h

Modified: team/group/appdocsxml/include/asterisk/xml.h
URL: http://svn.digium.com/view/asterisk/team/group/appdocsxml/include/asterisk/xml.h?view=diff&rev=152439&r1=152438&r2=152439
==============================================================================
--- team/group/appdocsxml/include/asterisk/xml.h (original)
+++ team/group/appdocsxml/include/asterisk/xml.h Tue Oct 28 13:31:32 2008
@@ -98,14 +98,19 @@
  */
 const char *ast_xml_get_text(struct ast_xml_node *node);
 
+/*! \brief Get the name of a node. */
 const char *ast_xml_node_get_name(struct ast_xml_node *node);
 
+/*! \brief Get the node's children. */
 struct ast_xml_node *ast_xml_node_get_children(struct ast_xml_node *node);
 
+/*! \brief Get the next node in the same level. */
 struct ast_xml_node *ast_xml_node_get_next(struct ast_xml_node *node);
 
+/*! \brief Get the previous node in the same leve. */
 struct ast_xml_node *ast_xml_node_get_prev(struct ast_xml_node *node);
 
+/*! \brief Get the parent of a specified node. */
 struct ast_xml_node *ast_xml_node_get_parent(struct ast_xml_node *node);
 
 /* Features using ast_xml_ */




More information about the svn-commits mailing list