summaryrefslogtreecommitdiffstats
path: root/testing/077_no_xml_namespace_members_in_file_scope.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2018-12-26 12:11:51 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2018-12-26 12:11:51 (GMT)
commit63931be561ab140b558418cffdd9b63b522c0e0d (patch)
treeb3b49af66d21903b9c99fe2ed137234ddce50aca /testing/077_no_xml_namespace_members_in_file_scope.h
parentd03868616adf46369b0e208a093493f71b3f98b0 (diff)
downloadDoxygen-63931be561ab140b558418cffdd9b63b522c0e0d.zip
Doxygen-63931be561ab140b558418cffdd9b63b522c0e0d.tar.gz
Doxygen-63931be561ab140b558418cffdd9b63b522c0e0d.tar.bz2
Renamed option and test case numbers
Diffstat (limited to 'testing/077_no_xml_namespace_members_in_file_scope.h')
-rw-r--r--testing/077_no_xml_namespace_members_in_file_scope.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/077_no_xml_namespace_members_in_file_scope.h b/testing/077_no_xml_namespace_members_in_file_scope.h
new file mode 100644
index 0000000..bf3dc64
--- /dev/null
+++ b/testing/077_no_xml_namespace_members_in_file_scope.h
@@ -0,0 +1,16 @@
+// objective: test that namespace members are not put to file docs by default
+// check: 077__no__xml__namespace__members__in__file__scope_8h.xml
+
+namespace Namespace {
+
+/**
+@brief A function
+
+Detailed documentation.
+*/
+void foo();
+
+/** @brief An enum */
+enum class Enum {};
+
+}