js8call/JS8_Main/TwoPhaseSignal.h
2026-01-18 19:19:15 -06:00

20 lines
380 B
C++

#ifndef TWOPHASESIGNAL_H
#define TWOPHASESIGNAL_H
#include <QObject>
class TwoPhaseSignal : public QObject {
Q_OBJECT
public:
TwoPhaseSignal();
~TwoPhaseSignal();
public slots:
/**
* Called when the plumbing has been completed.
* The object should react by fireing its signals.
*/
virtual void onPlumbingCompleted() const = 0;
};
#endif