diff --git a/libraries/controllers/src/controllers/InputConfiguration.cpp b/libraries/controllers/src/controllers/InputConfiguration.cpp new file mode 100644 index 0000000000..863bdbf675 --- /dev/null +++ b/libraries/controllers/src/controllers/InputConfiguration.cpp @@ -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() { + + } +} diff --git a/libraries/controllers/src/controllers/InputConfiguration.h b/libraries/controllers/src/controllers/InputConfiguration.h new file mode 100644 index 0000000000..0a7f01a7a1 --- /dev/null +++ b/libraries/controllers/src/controllers/InputConfiguration.h @@ -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 + +#include +#include + +namespace controller { + + class InputConfiguration : public QObject, public Dependency { + public: + InputConfiguration(); + ~InputConfiguration() {} + }; +} + +#endif