调整头文件包含顺序

This commit is contained in:
2025-08-06 18:06:30 +08:00
parent 957a372209
commit 429292b446
13 changed files with 21 additions and 33 deletions

View File

@ -4,11 +4,10 @@
#ifndef EXPKG_H
#define EXPKG_H
#include <filesystem>
#include <memory>
#include "BinaryOPT/BinaryReader.h"
#include "Tex/Tex.h"
#include <vector>
#include "Entry.h"
typedef struct CommandArgs
@ -19,6 +18,7 @@ typedef struct CommandArgs
namespace PKG
{
class BinaryReader;
enum class FILE_EXTENSION;
class PKG_API EXPKG
@ -38,7 +38,6 @@ namespace PKG
private:
std::shared_ptr<BinaryReader> m_Reader;
std::shared_ptr<Tex> m_Tex;
std::filesystem::path m_OutDir;