the final rename

This commit is contained in:
MihailRis
2024-05-06 03:38:19 +03:00
parent f27a418dbe
commit 1627e21c1d
196 changed files with 836 additions and 815 deletions
+3 -3
View File
@@ -1,9 +1,9 @@
#include "GLSLExtension.hpp"
#include "../util/stringutil.hpp"
#include "../typedefs.h"
#include "../files/files.h"
#include "../files/engine_paths.h"
#include "../typedefs.hpp"
#include "../files/files.hpp"
#include "../files/engine_paths.hpp"
#include <iostream>
#include <sstream>
+1
View File
@@ -2,6 +2,7 @@
#include "gzip.hpp"
#include "byte_utils.hpp"
#include "../data/dynamic.hpp"
#include <stdexcept>
+6 -1
View File
@@ -1,9 +1,14 @@
#ifndef CODERS_BINARY_JSON_HPP_
#define CODERS_BINARY_JSON_HPP_
#include "../typedefs.hpp"
#include <vector>
#include <memory>
#include "../data/dynamic.h"
namespace dynamic {
class Map;
}
namespace json {
const int BJSON_END = 0x0;
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef CODERS_BYTE_UTILS_HPP_
#define CODERS_BYTE_UTILS_HPP_
#include "../typedefs.h"
#include "../typedefs.hpp"
#include <string>
#include <vector>
+5 -4
View File
@@ -1,9 +1,10 @@
#ifndef CODERS_COMMONS_H_
#define CODERS_COMMONS_H_
#ifndef CODERS_COMMONS_HPP_
#define CODERS_COMMONS_HPP_
#include "../typedefs.hpp"
#include <string>
#include <stdexcept>
#include "../typedefs.h"
inline int is_box(int c) {
switch (c) {
@@ -102,4 +103,4 @@ public:
BasicParser(const std::string& file, const std::string& source);
};
#endif // CODERS_COMMONS_H_
#endif // CODERS_COMMONS_HPP_
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef CODERS_GZIP_HPP_
#define CODERS_GZIP_HPP_
#include "../typedefs.h"
#include "../typedefs.hpp"
#include <vector>
namespace gzip {
+4 -4
View File
@@ -1,13 +1,13 @@
#include "json.h"
#include "json.hpp"
#include "../data/dynamic.hpp"
#include "../util/stringutil.hpp"
#include <math.h>
#include <sstream>
#include <iomanip>
#include <memory>
#include "../data/dynamic.h"
#include "../util/stringutil.hpp"
using namespace json;
using namespace dynamic;
+4 -4
View File
@@ -1,10 +1,10 @@
#ifndef CODERS_JSON_H_
#define CODERS_JSON_H_
#ifndef CODERS_JSON_HPP_
#define CODERS_JSON_HPP_
#include "commons.hpp"
#include "binary_json.hpp"
#include "../typedefs.h"
#include "../typedefs.hpp"
#include <vector>
#include <string>
@@ -38,4 +38,4 @@ namespace json {
const std::string& indent);
}
#endif // CODERS_JSON_H_
#endif // CODERS_JSON_HPP_
+1 -1
View File
@@ -2,7 +2,7 @@
#include "../debug/Logger.hpp"
#include "../audio/audio.hpp"
#include "../typedefs.h"
#include "../typedefs.hpp"
#include <string>
#include <vorbis/codec.h>
+1 -1
View File
@@ -2,7 +2,7 @@
#include "../graphics/core/ImageData.hpp"
#include "../graphics/core/Texture.hpp"
#include "../files/files.h"
#include "../files/files.hpp"
#include "../debug/Logger.hpp"
#include <iostream>
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef CODERS_RLE_HPP_
#define CODERS_RLE_HPP_
#include "../typedefs.h"
#include "../typedefs.hpp"
namespace rle {
size_t encode(const ubyte* src, size_t length, ubyte* dst);
+1 -1
View File
@@ -2,7 +2,7 @@
#include "commons.hpp"
#include "../data/setting.hpp"
#include "../data/dynamic.h"
#include "../data/dynamic.hpp"
#include "../util/stringutil.hpp"
#include "../files/settings_io.hpp"