Imported Upstream version 1.8.15
[platform/upstream/doxygen.git] / testing / 077_no_xml_namespace_members_in_file_scope.h
1 // objective: test that namespace members are not put to file docs by default
2 // check: 077__no__xml__namespace__members__in__file__scope_8h.xml
3
4 namespace Namespace {
5
6 /**
7 @brief A function
8
9 Detailed documentation.
10 */
11 void foo();
12
13 /** @brief An enum */
14 enum class Enum {};
15
16 }