Skip to content
Snippets Groups Projects
Commit 0ecdc32c authored by Mirko Wächter's avatar Mirko Wächter
Browse files

condition handler and system observer are now also in the sce always added to the proxy list

parent 3471ac7e
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -499,12 +499,14 @@ void StateTreeModel::generateBaseClasses(const StatechartGroupPtr& group)
generateGroupDocString(group, QString::fromStdString(doxyFile.string()));
std::vector<std::string> proxies;
proxies.push_back("ArmarXCoreInterfaces.systemObserver");
proxies.push_back("ArmarXCoreInterfaces.conditionHandler");
for (QString p : group->getProxies())
{
proxies.push_back(p.toUtf8().data());
}
std::sort(proxies.begin(), proxies.end());
std::unique(proxies.begin(), proxies.end());
if (group->contextGenerationEnabled())
{
std::set<std::string> innerVariantTypes = getVariantOfStatesWithNoCpp(group);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment