Big Changes Ahead
- refactoring to header only library
- policy based pin
- and lot of improvement
...
classHelloWorld
: public Node<Name, Trigger>
{
public:HelloWorld(std::string const & name)
: Node<Name, Trigger>(name)
{
set_trigger_function([this](){ queuing_task(); });
}
protected:voidprocess() final
{
std::cout << "Hello world" << std::endl;
}
};
...
intmain()
{
HelloWorld hi("hello");
hi.start();
hi.trigger();
hi.stop();
return0;
}- WigWag
- spdlog
- Sole
- Google Test