summaryrefslogtreecommitdiff
path: root/test cases/frameworks/14 doxygen/src/spede.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/frameworks/14 doxygen/src/spede.cpp')
-rw-r--r--test cases/frameworks/14 doxygen/src/spede.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/test cases/frameworks/14 doxygen/src/spede.cpp b/test cases/frameworks/14 doxygen/src/spede.cpp
new file mode 100644
index 000000000..77fcaabc5
--- /dev/null
+++ b/test cases/frameworks/14 doxygen/src/spede.cpp
@@ -0,0 +1,24 @@
+#include<spede.h>
+
+namespace Comedy {
+
+/**
+ * Do all the delicate movements that lead to a comical sound
+ * emanating from a person.
+ *
+ * \param force how hard to move the hand.
+ * \return something or another
+ */
+int gesticulate(int force) {
+ // FIXME add implementation.
+ return 0;
+}
+
+Spede::Spede() : num_movies(100) {
+}
+
+Spede::slap_forehead() {
+ gesticulate(42);
+}
+
+}