Orb/Doxygen/examples/docstring.py
changeset 0 42188c7ea2d9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Orb/Doxygen/examples/docstring.py	Thu Jan 21 17:29:01 2010 +0000
@@ -0,0 +1,27 @@
+"""@package docstring
+Documentation for this module.
+
+More details.
+"""
+
+def func():
+    """Documentation for a function.
+
+    More details.
+    """
+    pass
+
+class PyClass:
+    """Documentation for a class.
+
+    More details.
+    """
+   
+    def __init__(self):
+        """The constructor."""
+        self._memVar = 0;
+   
+    def PyMethod(self):
+        """Documentation for a method."""
+        pass
+