normalize includes: ucs

This commit is contained in:
brainiac
2025-12-18 00:27:40 -08:00
committed by Alex
parent b7fcee632e
commit ed2344dc99
12 changed files with 110 additions and 143 deletions
+13 -18
View File
@@ -17,25 +17,23 @@
*/
#ifndef CHATSERVER_DATABASE_H
#define CHATSERVER_DATABASE_H
#pragma once
#include "common/database.h"
#include "common/database.h"
#include "common/linked_list.h"
#include "common/shareddb.h"
#include "common/types.h"
#include "ucs/chatchannel.h"
#include "ucs/clientlist.h"
#include <map>
#include <string>
#include <vector>
#define AUTHENTICATION_TIMEOUT 60
#define INVALID_ID 0xFFFFFFFF
#include "../common/global_define.h"
#include "../common/types.h"
#include "../common/database.h"
#include "../common/linked_list.h"
#include "../common/database.h"
#include "clientlist.h"
#include "chatchannel.h"
#include "../common/shareddb.h"
#include <string>
#include <vector>
#include <map>
class UCSDatabase : public Database {
public:
int FindAccount(const char *CharacterName, Client *c);
@@ -62,6 +60,3 @@ public:
void RemoveFriendOrIgnore(const int& char_id, const int& type, const std::string& name);
void GetFriendsAndIgnore(const int& char_id, std::vector<std::string> &Friends, std::vector<std::string> &Ignorees);
};
#endif