dotherside/lib/include/DOtherSide/IDynamicQObject.h

17 lines
306 B
C
Raw Normal View History

#pragma once
2015-02-04 23:02:26 +01:00
2015-12-29 11:21:49 +01:00
namespace DOS
{
2015-02-04 23:02:26 +01:00
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;
2015-02-04 23:02:26 +01:00
};
2015-12-29 11:21:49 +01:00
} // namespace DOS