mirror of
https://github.com/status-im/dotherside.git
synced 2025-02-12 12:46:24 +00:00
24 lines
530 B
C++
24 lines
530 B
C++
#pragma once
|
|
|
|
#include "private/qobject_p.h"
|
|
|
|
namespace DOS {
|
|
|
|
class DosIQObjectImpl
|
|
{
|
|
public:
|
|
/// Destructor
|
|
virtual ~DosIQObjectImpl() = default;
|
|
|
|
/// Emit the signal with the given name and arguments
|
|
virtual bool emitSignal(const QString &name, const std::vector<QVariant> &argumentsValues) = 0;
|
|
|
|
/// Return the metaObject
|
|
virtual const QMetaObject *metaObject() const = 0;
|
|
|
|
/// The qt_metacall implementation
|
|
virtual int qt_metacall(QMetaObject::Call, int, void **) = 0;
|
|
};
|
|
|
|
} // namespace dos
|