normalize includes: queryserv

This commit is contained in:
brainiac
2025-12-17 09:34:27 -08:00
committed by Alex
parent 227553337e
commit 91defcad99
14 changed files with 101 additions and 108 deletions
+12 -15
View File
@@ -1,23 +1,20 @@
#ifndef CHATSERVER_DATABASE_H
#define CHATSERVER_DATABASE_H
#pragma once
#include "common/database.h"
#include "common/eqemu_logsys.h"
#include "common/global_define.h"
#include "common/linked_list.h"
#include "common/servertalk.h"
#include "common/types.h"
#include <map>
#include <string>
#include <vector>
#define AUTHENTICATION_TIMEOUT 60
#define INVALID_ID 0xFFFFFFFF
#include "../common/eqemu_logsys.h"
#include "../common/global_define.h"
#include "../common/types.h"
#include "../common/database.h"
#include "../common/linked_list.h"
#include "../common/servertalk.h"
#include <string>
#include <vector>
#include <map>
class QSDatabase : public Database {
public:
void GeneralQueryReceive(ServerPacket *pack);
};
#endif