dotherside/lib/include/DOtherSide/IDynamicQObject.h
2016-04-10 14:39:59 +02:00

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