summaryrefslogtreecommitdiff
path: root/test cases/frameworks/14 doxygen/src/spede.cpp
blob: 77fcaabc5363244f7db2e1d37e01b83803de5c55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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);
}

}