Skip to content
Snippets Groups Projects
Commit e49c5425 authored by Giacomo Strangolino's avatar Giacomo Strangolino
Browse files

enabled stop all writings

parent 49dc5fc2
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@
#include <cumacros.h>
#include <quapps.h>
#include <qulabel.h>
#include <quwriter.h>
// cumbia
#include "ui_acdc.h"
......@@ -47,8 +48,13 @@ void Acdc::m_stop_all() {
}
if(tgts.size() > 0)
tgts << "pos/dmrc/dmrc_pos.01->Stop";
foreach(const QString &t, tgts)
printf("would execute \e[1;32m%s\e[0m\n", qstoc(t));
foreach(const QString &t, tgts) {
printf("executing \e[1;32m%s\e[0m\n", qstoc(t));
QuWriter *w = new QuWriter(this, cu_pool, m_ctrl_factory_pool);
w->setAutoDestroy(true);
w->setTarget(t);
w->execute();
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment