Moved DeviceConfig from config to input directory.

This commit is contained in:
hiker 2014-10-26 23:26:02 +11:00
parent ec908d85c6
commit e8f509eefe
6 changed files with 6 additions and 5 deletions

View File

@ -1,5 +1,5 @@
# Modify this file to change the last-modified date when you add/remove a file.
# This will then trigger a new cmake run automatically.
# This will then trigger a new cmake run automatically.
file(GLOB_RECURSE STK_HEADERS RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "src/*.hpp")
file(GLOB_RECURSE STK_SOURCES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "src/*.cpp")
file(GLOB_RECURSE STK_SHADERS RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "data/shaders/*")

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "config/device_config.hpp"
#include "input/device_config.hpp"
#include "io/xml_node.hpp"
#include "utils/log.hpp"

View File

@ -19,8 +19,8 @@
#ifndef DEVICE_MANAGER_HPP
#define DEVICE_MANAGER_HPP
#include "input/device_config.hpp"
#include "input/input_device.hpp"
#include "config/device_config.hpp"
#include "utils/no_copy.hpp"
#include "utils/ptr_vector.hpp"

View File

@ -16,7 +16,8 @@
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "config/device_config.hpp"
#include "input/device_config.hpp"
#include "guiengine/abstract_state_manager.hpp"
#include "input/input.hpp"
#include "input/input_device.hpp"

View File

@ -21,7 +21,7 @@
#include <string>
#include "config/device_config.hpp"
#include "input/device_config.hpp"
#include "input/input.hpp"
#include "input/input_manager.hpp"
#include "states_screens/state_manager.hpp"