From 31ecd1474775405e36f7605f308562b8b4897cb0 Mon Sep 17 00:00:00 2001 From: Sergey Yershov Date: Thu, 9 Apr 2015 13:40:00 +0300 Subject: [PATCH] Fix include path for drape_head --- drape_head/drape_surface.cpp | 18 ++++++------ drape_head/drape_surface.hpp | 18 ++++++------ drape_head/main.cpp | 2 +- drape_head/mainwindow.cpp | 4 +-- drape_head/qtoglcontext.cpp | 8 +++--- drape_head/qtoglcontext.hpp | 2 +- drape_head/qtoglcontextfactory.cpp | 4 +-- drape_head/qtoglcontextfactory.hpp | 4 +-- drape_head/testing_engine.cpp | 46 +++++++++++++++--------------- drape_head/testing_engine.hpp | 18 ++++++------ 10 files changed, 62 insertions(+), 62 deletions(-) diff --git a/drape_head/drape_surface.cpp b/drape_head/drape_surface.cpp index 8a41da185b..aa9552b9fd 100644 --- a/drape_head/drape_surface.cpp +++ b/drape_head/drape_surface.cpp @@ -1,17 +1,17 @@ -#include "drape_surface.hpp" +#include "drape_head/drape_surface.hpp" -#include "../drape_frontend/viewport.hpp" -#include "../drape_frontend/map_data_provider.hpp" +#include "drape_frontend/viewport.hpp" +#include "drape_frontend/map_data_provider.hpp" -#include "../platform/platform.hpp" +#include "platform/platform.hpp" -#include "../drape/shader_def.hpp" +#include "drape/shader_def.hpp" -#include "../base/stl_add.hpp" -#include "../base/logging.hpp" +#include "base/stl_add.hpp" +#include "base/logging.hpp" -#include "../std/bind.hpp" -#include "../std/cmath.hpp" +#include "std/bind.hpp" +#include "std/cmath.hpp" #include diff --git a/drape_head/drape_surface.hpp b/drape_head/drape_surface.hpp index e695405694..b906d180c4 100644 --- a/drape_head/drape_surface.hpp +++ b/drape_head/drape_surface.hpp @@ -1,21 +1,21 @@ #pragma once -#include "qtoglcontextfactory.hpp" +#include "drape_head/qtoglcontextfactory.hpp" -#include "../map/feature_vec_model.hpp" -#include "../map/navigator.hpp" -#include "../map/scales_processor.hpp" +#include "map/feature_vec_model.hpp" +#include "map/navigator.hpp" +#include "map/scales_processor.hpp" -#include "../drape/batcher.hpp" -#include "../drape/gpu_program_manager.hpp" -#include "../drape/uniform_values_storage.hpp" +#include "drape/batcher.hpp" +#include "drape/gpu_program_manager.hpp" +#include "drape/uniform_values_storage.hpp" //#define USE_TESTING_ENGINE #if defined(USE_TESTING_ENGINE) -#include "testing_engine.hpp" +#include "drape_head/testing_engine.hpp" #define DrapeEngine TestingEngine #else -#include "../drape_frontend/drape_engine.hpp" +#include "drape_frontend/drape_engine.hpp" #endif #include diff --git a/drape_head/main.cpp b/drape_head/main.cpp index 700088b330..dda0d1d608 100644 --- a/drape_head/main.cpp +++ b/drape_head/main.cpp @@ -1,4 +1,4 @@ -#include "mainwindow.hpp" +#include "drape_head/mainwindow.hpp" #include int main(int argc, char *argv[]) diff --git a/drape_head/mainwindow.cpp b/drape_head/mainwindow.cpp index 851a77caeb..96e56f479b 100644 --- a/drape_head/mainwindow.cpp +++ b/drape_head/mainwindow.cpp @@ -1,6 +1,6 @@ -#include "mainwindow.hpp" +#include "drape_head/mainwindow.hpp" -#include "drape_surface.hpp" +#include "drape_head/drape_surface.hpp" #include diff --git a/drape_head/qtoglcontext.cpp b/drape_head/qtoglcontext.cpp index feee116dc1..750dbe5b4c 100644 --- a/drape_head/qtoglcontext.cpp +++ b/drape_head/qtoglcontext.cpp @@ -1,9 +1,9 @@ -#include "qtoglcontext.hpp" +#include "drape_head/qtoglcontext.hpp" -#include "../base/assert.hpp" -#include "../base/logging.hpp" +#include "base/assert.hpp" +#include "base/logging.hpp" -#include "../drape/glfunctions.hpp" +#include "drape/glfunctions.hpp" QtOGLContext::QtOGLContext(QWindow * surface, QtOGLContext * contextToShareWith) { diff --git a/drape_head/qtoglcontext.hpp b/drape_head/qtoglcontext.hpp index aec0a1339b..2bc7000de3 100644 --- a/drape_head/qtoglcontext.hpp +++ b/drape_head/qtoglcontext.hpp @@ -1,6 +1,6 @@ #pragma once -#include "../drape/oglcontext.hpp" +#include "drape/oglcontext.hpp" #include #include diff --git a/drape_head/qtoglcontextfactory.cpp b/drape_head/qtoglcontextfactory.cpp index 33ad81691a..28ce15cdae 100644 --- a/drape_head/qtoglcontextfactory.cpp +++ b/drape_head/qtoglcontextfactory.cpp @@ -1,6 +1,6 @@ -#include "qtoglcontextfactory.hpp" +#include "drape_head/qtoglcontextfactory.hpp" -#include "../base/assert.hpp" +#include "base/assert.hpp" QtOGLContextFactory::QtOGLContextFactory(QWindow * surface) : m_surface(surface) diff --git a/drape_head/qtoglcontextfactory.hpp b/drape_head/qtoglcontextfactory.hpp index 4b65f12fe3..0ce63d77d5 100644 --- a/drape_head/qtoglcontextfactory.hpp +++ b/drape_head/qtoglcontextfactory.hpp @@ -1,7 +1,7 @@ #pragma once -#include "../../drape/oglcontextfactory.hpp" -#include "qtoglcontext.hpp" +#include "drape/oglcontextfactory.hpp" +#include "drape_head/qtoglcontext.hpp" #include diff --git a/drape_head/testing_engine.cpp b/drape_head/testing_engine.cpp index 637d04208b..3e469f635d 100644 --- a/drape_head/testing_engine.cpp +++ b/drape_head/testing_engine.cpp @@ -1,33 +1,33 @@ -#include "testing_engine.hpp" +#include "drape_head/testing_engine.hpp" -#include "../coding/file_reader.hpp" -#include "../platform/platform.hpp" +#include "coding/file_reader.hpp" +#include "platform/platform.hpp" -#include "../drape/utils/vertex_decl.hpp" -#include "../drape/glsl_types.hpp" -#include "../drape/vertex_array_buffer.hpp" -#include "../drape/shader_def.hpp" -#include "../drape/overlay_tree.hpp" -#include "../drape/stipple_pen_resource.hpp" +#include "drape/utils/vertex_decl.hpp" +#include "drape/glsl_types.hpp" +#include "drape/vertex_array_buffer.hpp" +#include "drape/shader_def.hpp" +#include "drape/overlay_tree.hpp" +#include "drape/stipple_pen_resource.hpp" -#include "../drape_frontend/visual_params.hpp" -#include "../drape_frontend/line_shape.hpp" -#include "../drape_frontend/text_shape.hpp" -#include "../drape_frontend/path_text_shape.hpp" -#include "../drape_frontend/path_symbol_shape.hpp" -#include "../drape_frontend/area_shape.hpp" -#include "../drape_frontend/circle_shape.hpp" +#include "drape_frontend/visual_params.hpp" +#include "drape_frontend/line_shape.hpp" +#include "drape_frontend/text_shape.hpp" +#include "drape_frontend/path_text_shape.hpp" +#include "drape_frontend/path_symbol_shape.hpp" +#include "drape_frontend/area_shape.hpp" +#include "drape_frontend/circle_shape.hpp" -#include "../geometry/transformations.hpp" +#include "geometry/transformations.hpp" -#include "../base/stl_add.hpp" -#include "../base/timer.hpp" +#include "base/stl_add.hpp" +#include "base/timer.hpp" -#include "../std/bind.hpp" -#include "../std/function.hpp" -#include "../std/vector.hpp" +#include "std/bind.hpp" +#include "std/function.hpp" +#include "std/vector.hpp" -#include "../../3party/jansson/myjansson.hpp" +#include "3party/jansson/myjansson.hpp" namespace df { diff --git a/drape_head/testing_engine.hpp b/drape_head/testing_engine.hpp index a2980f0171..7593dfd12f 100644 --- a/drape_head/testing_engine.hpp +++ b/drape_head/testing_engine.hpp @@ -1,16 +1,16 @@ #pragma once -#include "../drape/pointers.hpp" -#include "../drape/oglcontextfactory.hpp" -#include "../drape/batcher.hpp" -#include "../drape/gpu_program_manager.hpp" -#include "../drape/uniform_values_storage.hpp" -#include "../drape/texture_manager.hpp" +#include "drape/pointers.hpp" +#include "drape/oglcontextfactory.hpp" +#include "drape/batcher.hpp" +#include "drape/gpu_program_manager.hpp" +#include "drape/uniform_values_storage.hpp" +#include "drape/texture_manager.hpp" -#include "../drape_frontend/viewport.hpp" -#include "../drape_frontend/map_data_provider.hpp" +#include "drape_frontend/viewport.hpp" +#include "drape_frontend/map_data_provider.hpp" -#include "../std/map.hpp" +#include "std/map.hpp" #include #include