hyperion.ng/include/utils/global_defines.h
2024-12-13 15:48:37 +01:00

11 lines
223 B
C++

#pragma once
#include <cstdint>
#include <QList>
#define QSTRING_CSTR(str) str.toUtf8().constData()
typedef QList< int > QIntList;
constexpr double DOUBLE_UINT8_MAX_SQUARED = static_cast<double>(UINT8_MAX) * UINT8_MAX;