mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
11 lines
223 B
C++
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;
|