summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/CRSMConfig.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/CRSMConfig.hpp b/src/CRSMConfig.hpp
index b705c62..c0f3b06 100644
--- a/src/CRSMConfig.hpp
+++ b/src/CRSMConfig.hpp
@@ -49,6 +49,7 @@ public:
using String = QString;
using Integer = int;
+using Port = ushort;
using Boolean = bool;
#define List(Type) QList<Type>
#define Map(KeyType, ValueType) QMap<KeyType, ValueType>
@@ -234,7 +235,7 @@ protected:
class CRSMConfig : public CRSMConfigBase {
public:
struct {
- Integer ManagementPort = 9372;
+ Port ManagementPort = 9372;
String ListFolder = "ScenarioLists";
} CRSM;