diff options
Diffstat (limited to 'meson/test cases/frameworks/14 doxygen/include/comedian.h')
-rw-r--r-- | meson/test cases/frameworks/14 doxygen/include/comedian.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meson/test cases/frameworks/14 doxygen/include/comedian.h b/meson/test cases/frameworks/14 doxygen/include/comedian.h new file mode 100644 index 000000000..d62b28394 --- /dev/null +++ b/meson/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(){}; + }; + +} |