mirror of
https://github.com/logos-co/logos-cpp-sdk.git
synced 2026-08-31 09:41:06 +00:00
18 lines
425 B
C++
18 lines
425 B
C++
#pragma once
|
|
#include <functional>
|
|
#include <string>
|
|
|
|
// Parser tests only read this as text. LogosMap / LogosList match logos_json.h aliases.
|
|
class UniversalImpl {
|
|
public:
|
|
UniversalImpl() = default;
|
|
|
|
LogosMap fetchMap();
|
|
LogosList fetchList();
|
|
QVariantMap asVariantMap();
|
|
QStringList listNames();
|
|
QVariantList anyList();
|
|
|
|
std::function<void(const std::string&, const std::string&)> emitEvent;
|
|
};
|