Skip to content

Instantly share code, notes, and snippets.

@MoeQatoum
MoeQatoum / Q_EnumToString.cpp
Last active September 19, 2022 18:18
C++ Qt how convert Q_ENUM to QString, std::string
// credits to @Meefte answer. https://stackoverflow.com/a/34282031/14745345
// https://doc.qt.io/qt-5/qmetaenum.html#keyToValue
// https://doc.qt.io/qt-5/qobject.html#Q_ENUM
// https://doc.qt.io/qt-5/qobject.html#Q_ENUM_NS
#include <QtCore>
#include <iostream>
namespace MyNameSpace
{