summaryrefslogtreecommitdiffstats
path: root/test cases/frameworks/14 doxygen/include/comedian.h
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/frameworks/14 doxygen/include/comedian.h')
-rw-r--r--test cases/frameworks/14 doxygen/include/comedian.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/test cases/frameworks/14 doxygen/include/comedian.h b/test cases/frameworks/14 doxygen/include/comedian.h
new file mode 100644
index 0000000..d62b283
--- /dev/null
+++ b/test cases/frameworks/14 doxygen/include/comedian.h
@@ -0,0 +1,17 @@
+#pragma once
+
+namespace Comedy {
+
+ /**
+ * Interface for a funnyperson.
+ */
+ class Comedian {
+ public:
+ /**
+ * Do the thing people want to happen.
+ */
+ virtual void tell_joke() = 0;
+ virtual ~Comedian(){};
+ };
+
+}