summaryrefslogtreecommitdiffstats
path: root/testing/decl_def.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-01-12 13:58:16 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-01-12 13:58:16 (GMT)
commit7f40e488e27bcea4bb15045df05479dc5fbd9d6d (patch)
tree9497084f8c326623c0ed92e0f6974f845ad0fa8a /testing/decl_def.h
parent121ec253945f6563ac6731e3596cd9beaa39cb72 (diff)
downloadDoxygen-7f40e488e27bcea4bb15045df05479dc5fbd9d6d.zip
Doxygen-7f40e488e27bcea4bb15045df05479dc5fbd9d6d.tar.gz
Doxygen-7f40e488e27bcea4bb15045df05479dc5fbd9d6d.tar.bz2
Added declfile, declline, and declcolumn attributes to the location element in the XML output
Diffstat (limited to 'testing/decl_def.h')
-rw-r--r--testing/decl_def.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/decl_def.h b/testing/decl_def.h
new file mode 100644
index 0000000..6e39335
--- /dev/null
+++ b/testing/decl_def.h
@@ -0,0 +1,10 @@
+namespace N
+{
+
+/** @brief variable declaration */
+extern int var;
+
+/** @brief function declaration */
+void foo(int param);
+
+}