Added Platform::frontendTypes()

Needed by the tests
This commit is contained in:
Sergio Martins
2022-04-27 09:44:06 +01:00
parent 9fa80d2061
commit a2d17fd0b9
3 changed files with 22 additions and 1 deletions

View File

@@ -65,7 +65,9 @@ Q_ENUM_NS(MainWindowOptions)
enum class FrontendType
{
QtWidgets = 1,
QtQuick
QtQuick,
FIRST = QtWidgets,
LAST = QtQuick // keep pointing to last
};
Q_ENUM_NS(FrontendType)