saving work

This commit is contained in:
Dante Ruiz 2017-06-01 23:29:22 +01:00
parent 4c69ec4365
commit e1d37f2167
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,17 @@
//
// Created by Dante Ruiz on 6/1/17.
// Copyright 2017 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 "InputConfiguration.h"
namespace controller {
InputConfiguration::InputConfiguration() {
}
}

View file

@ -0,0 +1,26 @@
//
// Created by Dante Ruiz on 6/1/17.
// Copyright 2017 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_InputConfiguration_h
#define hifi_InputConfiguration_h
#include <mutex>
#include <DependencyManager.h>
#include <RegisteredMetaTypes.h>
namespace controller {
class InputConfiguration : public QObject, public Dependency {
public:
InputConfiguration();
~InputConfiguration() {}
};
}
#endif