Added Settings class

Just a simple Wrapper for now
This commit is contained in:
Atlante45 2015-01-18 18:08:20 -08:00
parent 293f2f7f01
commit 33d0e1bad5
2 changed files with 38 additions and 0 deletions

View 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"

View 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