Make core/ includes absolute, remove subfolders from include path

This allows more consistency in the manner we include core headers,
where previously there would be a mix of absolute, relative and
include path-dependent includes.
This commit is contained in:
Rémi Verschelde
2018-09-11 18:13:45 +02:00
parent cc71012266
commit 277b24dfb7
873 changed files with 2119 additions and 2027 deletions

View File

@ -35,23 +35,23 @@
@author Juan Linietsky <reduzio@gmail.com>
*/
#include "aabb.h"
#include "array.h"
#include "color.h"
#include "dictionary.h"
#include "dvector.h"
#include "face3.h"
#include "io/ip_address.h"
#include "matrix3.h"
#include "node_path.h"
#include "plane.h"
#include "quat.h"
#include "ref_ptr.h"
#include "rid.h"
#include "transform.h"
#include "transform_2d.h"
#include "ustring.h"
#include "vector3.h"
#include "core/array.h"
#include "core/color.h"
#include "core/dictionary.h"
#include "core/dvector.h"
#include "core/io/ip_address.h"
#include "core/math/aabb.h"
#include "core/math/face3.h"
#include "core/math/matrix3.h"
#include "core/math/plane.h"
#include "core/math/quat.h"
#include "core/math/transform.h"
#include "core/math/transform_2d.h"
#include "core/math/vector3.h"
#include "core/node_path.h"
#include "core/ref_ptr.h"
#include "core/rid.h"
#include "core/ustring.h"
class RefPtr;
class Object;