mirror of
https://github.com/status-im/dotherside.git
synced 2025-02-07 10:14:41 +00:00
Fixes include that is relative to include path to absolute path as it is with other qt includes.
25 lines
449 B
C++
25 lines
449 B
C++
#pragma once
|
|
|
|
// std
|
|
#include <vector>
|
|
// Qt
|
|
#include <QtCore/QVariant>
|
|
// DOtherSide
|
|
#include "DOtherSide/DOtherSideTypesCpp.h"
|
|
|
|
namespace DOS {
|
|
|
|
class OnSlotExecutedHandler
|
|
{
|
|
public:
|
|
OnSlotExecutedHandler(void *dObjectPointer, DObjectCallback dObjectCallback);
|
|
|
|
QVariant operator()(const QString &name, const std::vector<QVariant> &args);
|
|
|
|
private:
|
|
void *m_dObjectPointer;
|
|
DObjectCallback m_dObjectCallback;
|
|
};
|
|
|
|
} // namespace DOS
|