Skip to content

Repository files navigation

MarklarDataflow

Status

Big Changes Ahead

  • refactoring to header only library
  • policy based pin
  • and lot of improvement

Hello World

 ...
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;
}

3rd Party

  • WigWag
  • spdlog
  • Sole
  • Google Test

Releases

Packages

Contributors

Languages