15 lines
219 B
Plaintext
15 lines
219 B
Plaintext
$#include "hello.hpp"
|
|
|
|
namespace Hello {
|
|
|
|
class HelloWorld {
|
|
HelloWorld(bool isquiet);
|
|
void _set_quiet(bool value);
|
|
bool _get_quiet();
|
|
long _get_count();
|
|
std::string say_hello_to(std::string name);
|
|
};
|
|
|
|
};
|
|
|