Includes, clean-up
We are trying to avoid including stuff whenever possible. Forward declarations are prefered in most cases, just in case...
This commit is contained in:
9
rs.cc
9
rs.cc
@@ -322,7 +322,14 @@ void RctSys::ctxAutAddTransition(std::string srcStateName,
|
||||
std::string dstStateName)
|
||||
{
|
||||
assert(ctx_aut != nullptr);
|
||||
ctx_aut->addTransition(srcStateName, dstStateName);
|
||||
ctx_aut->addTransition(srcStateName, dstStateName, nullptr);
|
||||
}
|
||||
|
||||
void RctSys::ctxAutAddTransition(std::string srcStateName,
|
||||
std::string dstStateName, StateConstr *stateConstr)
|
||||
{
|
||||
assert(ctx_aut != nullptr);
|
||||
ctx_aut->addTransition(srcStateName, dstStateName, stateConstr);
|
||||
}
|
||||
|
||||
void RctSys::ctxAutPushNamedContextEntity(std::string entityName)
|
||||
|
||||
Reference in New Issue
Block a user