25 lines
261 B
C++
25 lines
261 B
C++
|
|
/*
|
|
* 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();
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|