mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-15 16:26:08 +00:00
refactor(Core/Misc): headers cleanup (#9259)
This commit is contained in:
@@ -17,8 +17,8 @@
|
||||
|
||||
#include "CharacterDatabaseCleaner.h"
|
||||
#include "Common.h"
|
||||
#include "Database/DatabaseEnv.h"
|
||||
#include "DBCStores.h"
|
||||
#include "Database/DatabaseEnv.h"
|
||||
#include "Log.h"
|
||||
#include "SpellMgr.h"
|
||||
#include "World.h"
|
||||
|
||||
@@ -15,12 +15,12 @@
|
||||
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "PlayerDump.h"
|
||||
#include "AccountMgr.h"
|
||||
#include "Common.h"
|
||||
#include "CharacterCache.h"
|
||||
#include "Common.h"
|
||||
#include "DatabaseEnv.h"
|
||||
#include "ObjectMgr.h"
|
||||
#include "PlayerDump.h"
|
||||
#include "World.h"
|
||||
|
||||
#define DUMP_TABLE_COUNT 27
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
#ifndef _PLAYER_DUMP_H
|
||||
#define _PLAYER_DUMP_H
|
||||
|
||||
#include "Define.h"
|
||||
#include <map>
|
||||
#include <set>
|
||||
#include <string>
|
||||
@@ -69,7 +70,7 @@ protected:
|
||||
class PlayerDumpWriter : public PlayerDump
|
||||
{
|
||||
public:
|
||||
PlayerDumpWriter() {}
|
||||
PlayerDumpWriter() { }
|
||||
|
||||
bool GetDump(uint32 guid, std::string& dump);
|
||||
DumpReturn WriteDump(std::string const& file, uint32 guid);
|
||||
@@ -88,7 +89,7 @@ private:
|
||||
class PlayerDumpReader : public PlayerDump
|
||||
{
|
||||
public:
|
||||
PlayerDumpReader() {}
|
||||
PlayerDumpReader() { }
|
||||
|
||||
DumpReturn LoadDump(std::string const& file, uint32 account, std::string name, uint32 guid);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user