Files
logos-cpp-sdk/cpp/logos_json.h

9 lines
340 B
C
Raw Permalink Normal View History

2026-04-13 13:29:26 -04:00
#pragma once
#include <nlohmann/json.hpp>
// Semantic aliases for nlohmann::json used in universal module impl classes.
// The code generator recognizes these names and emits QVariantMap / QVariantList
// conversions in the Qt glue layer, so impl classes remain Qt-free.
using LogosMap = nlohmann::json;
using LogosList = nlohmann::json;