add api usage examples for cpp and python binding

This commit is contained in:
mlangkabel
2018-12-15 02:43:34 +01:00
committed by Eberhard Graether
parent 4517be935c
commit 1c07e5b4dc
379 changed files with 12162 additions and 15 deletions
+24
View File
@@ -0,0 +1,24 @@
/*
* MyType
*
* This is a multiline comment
*/
namespace api
{
class MyType
: public BaseType
{
public:
void my_method(bool do_send_signal) const
{
if (do_send_signal)
{
Client::send_signal();
}
}
}
}