db49c2f9 JT |
1 | #include "minimalistic-stub.hxx" |
| 2 | |
| 3 | std::string testfunc(const std::string& str); |
| 4 | |
| 5 | libt2n::result* testfunc_cmd::operator()() |
| 6 | { |
| 7 | return new testfunc_res(testfunc(param)); |
| 8 | } |
| 4cae8ac9 |
9 | |
c0a5c771 JT |
10 | #include "minimalistic-stub-once.hxx" |
| 11 | |