MCPcopy Create free account
hub / github.com/MultiMC/Launcher / OpSys_fromString

Function OpSys_fromString

launcher/minecraft/OpSys.cpp:18–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16#include "OpSys.h"
17
18OpSys OpSys_fromString(QString name)
19{
20 if (name == "linux")
21 return Os_Linux;
22 if (name == "windows")
23 return Os_Windows;
24 if (name == "osx")
25 return Os_OSX;
26 return Os_Other;
27}
28
29QString OpSys_toString(OpSys name)
30{

Callers 2

rulesFromJsonV4Function · 0.85
libraryFromJsonMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected