davidfrulm
davidfrulm
I am unsure about the "Explicit Entry" syntax. I tried several variations but none of them seems to make any practical difference. Code below presents one of these variations: #include...
``` #include #include #include namespace sml = boost::sml; enum class Pizza { Margarita, Diavolo }; std::ostream& operator
I am trying to split a SML fsm into different files. ValueToCheck.hpp ``` #pragma once struct ValueToCheck { int value; }; ``` States.hpp ``` #pragma once #include "ValueToCheck.hpp" #include struct...