summaryrefslogtreecommitdiff
path: root/test cases/frameworks/14 doxygen/src/spede.cpp
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-02-12 14:07:25 -0500
committerJussi Pakkanen <jpakkane@gmail.com>2017-02-12 14:07:25 -0500
commitd7dd20b1c110fad1a63ed1edad6fc68e78b43d3e (patch)
tree80e46a52247660d2fe72e8a4fb28d7807d7ed312 /test cases/frameworks/14 doxygen/src/spede.cpp
parent87632fa51e946a3b7aa429aa28aff3a074953d7c (diff)
downloadmeson-d7dd20b1c110fad1a63ed1edad6fc68e78b43d3e.tar.gz
Created doxygen sample project.
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);
+}
+
+}