refs #196, secondary GUI subproject for #151

This commit is contained in:
Klaus Basan
2014-03-27 01:11:32 +01:00
parent e1e4fbb449
commit a4e6f0e20c
13 changed files with 1588 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
/* Copyright (C) 2013 VATSIM Community / authors
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef SAMPLE_GUIMODEENUMS_H
#define SAMPLE_GUIMODEENUMS_H
struct GuiModes {
public:
/*!
* \brief Window mode
*/
enum WindowMode {
WindowFrameless,
WindowNormal
};
/*!
* \brief Core runs how and where?
*/
enum CoreMode {
CoreInGuiProcess,
CoreExternal,
CoreExternalVoiceLocal
};
};
#endif // guard