mirror of
https://github.com/lubosz/overte.git
synced 2025-04-24 02:53:43 +02:00
Added Settings class
Just a simple Wrapper for now
This commit is contained in:
parent
293f2f7f01
commit
33d0e1bad5
2 changed files with 38 additions and 0 deletions
13
libraries/shared/src/Settings.cpp
Normal file
13
libraries/shared/src/Settings.cpp
Normal file
|
@ -0,0 +1,13 @@
|
|||
//
|
||||
// Settings.cpp
|
||||
//
|
||||
//
|
||||
// Created by Clement on 1/18/15.
|
||||
// Copyright 2015 High Fidelity, Inc.
|
||||
//
|
||||
// Distributed under the Apache License, Version 2.0.
|
||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
//
|
||||
|
||||
#include "Settings.h"
|
||||
|
25
libraries/shared/src/Settings.h
Normal file
25
libraries/shared/src/Settings.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
//
|
||||
// Settings.h
|
||||
//
|
||||
//
|
||||
// Created by Clement on 1/18/15.
|
||||
// Copyright 2015 High Fidelity, Inc.
|
||||
//
|
||||
// Distributed under the Apache License, Version 2.0.
|
||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
//
|
||||
|
||||
#ifndef hifi_Settings_h
|
||||
#define hifi_Settings_h
|
||||
|
||||
#include <QSettings>
|
||||
|
||||
// Just a simple wrapper for now
|
||||
class Settings : public QSettings {
|
||||
};
|
||||
|
||||
namespace SettingsKey {
|
||||
|
||||
}
|
||||
|
||||
#endif // hifi_Settings_h
|
Loading…
Reference in a new issue