mirror of
https://github.com/status-im/dotherside.git
synced 2025-02-12 12:46:24 +00:00
17 lines
306 B
C++
17 lines
306 B
C++
#pragma once
|
|
|
|
namespace DOS
|
|
{
|
|
|
|
class IDynamicQObject
|
|
{
|
|
public:
|
|
/// Destructor
|
|
virtual ~IDynamicQObject() = default;
|
|
|
|
/// Emit the signal with the given name and arguments
|
|
virtual bool emitSignal(const QString& name, const std::vector<QVariant>& argumentsValues) = 0;
|
|
};
|
|
|
|
} // namespace DOS
|