Browse Source

Changed paths to relative in header files

Ivan Arkhipov 5 years ago
parent
commit
1d27bc7379

+ 1 - 0
include/DatFile.h

@@ -26,6 +26,7 @@ extern "C++"
 {
 namespace LOTRO_DAT {
     enum FILE_TYPE : int {
+        NO_TYPE = 0,
         TEXT = 1,
         JPG = 2,
         DDS = 4,

+ 1 - 1
include/DatOperationResult.h

@@ -8,7 +8,7 @@
 #include <string>
 #include <memory>
 #include <utility>
-#include <BinaryData.h>
+#include "BinaryData.h"
 #include <EasyLogging++/easylogging++.h>
 
 extern "C++"

+ 1 - 1
include/DatSubsystems/DatBackupManager.h

@@ -6,7 +6,7 @@
 #define LOTRO_DAT_LIBRARY_DATBACKUP_H
 
 #include <string>
-#include <DatOperationResult.h>
+#include "../DatOperationResult.h"
 
 extern "C++" {
 namespace LOTRO_DAT {

+ 2 - 2
include/DatSubsystems/DatExporter.h

@@ -1,8 +1,8 @@
 #ifndef LOTRO_DAT_LIBRARY_DATEXPORTER_H
 #define LOTRO_DAT_LIBRARY_DATEXPORTER_H
 
-#include <DatOperationResult.h>
-#include <Database.h>
+#include "../DatOperationResult.h"
+#include "../Database.h"
 
 extern "C++" {
 namespace LOTRO_DAT {

+ 3 - 3
include/DatSubsystems/DatFileSystem.h

@@ -12,9 +12,9 @@
 #include <utility>
 #include <memory>
 
-#include <DatOperationResult.h>
-#include <SubFile.h>
-#include <SubDirectory.h>
+#include "../DatOperationResult.h"
+#include "../SubFile.h"
+#include "../SubDirectory.h"
 
 extern "C++" {
 namespace LOTRO_DAT {

+ 1 - 1
include/DatSubsystems/DatIO.h

@@ -6,7 +6,7 @@
 #define LOTRO_DAT_LIBRARY_DATIO_H
 
 #include <utility>
-#include "DatOperationResult.h"
+#include "../DatOperationResult.h"
 
 extern "C++" {
 namespace LOTRO_DAT {

+ 2 - 1
include/DatSubsystems/DatLocaleManager.h

@@ -3,9 +3,10 @@
 
 #include <memory>
 #include <map>
-#include <DatOperationResult.h>
 #include <set>
 
+#include "../DatOperationResult.h"
+
 extern "C++" {
 namespace LOTRO_DAT {
     class DatFile;

+ 1 - 1
include/DatSubsystems/DatPatcher.h

@@ -6,7 +6,7 @@
 #define LOTRO_DAT_LIBRARY_DATPATCHER_H
 
 #include "yaml-cpp/yaml.h"
-#include <DatOperationResult.h>
+#include "../DatOperationResult.h"
 
 extern "C++"
 {

+ 2 - 2
include/LotroDat.h

@@ -7,5 +7,5 @@
 #include "SubfileData.h"
 #include "DatOperationResult.h"
 
-#include "yaml-cpp/yaml.h"
-#include "ZLib/zlib.h"
+#include <yaml-cpp/yaml.h>
+#include <ZLib/zlib.h>