File indexing completed on 2024-11-10 04:39:59
0001 /* 0002 SPDX-FileCopyrightText: 2009 Constantin Berzan <exit3219@gmail.com> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include <QObject> 0010 0011 /** 0012 This class uses the DispatcherInterface to send an abort() signal th the MDA. 0013 */ 0014 class Runner : public QObject 0015 { 0016 Q_OBJECT 0017 0018 public: 0019 Runner(); 0020 0021 private Q_SLOTS: 0022 void sendAbort(); 0023 };