mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 06:27:24 +00:00
9655f0ee45
fix compile issues
45 lines
1.0 KiB
C++
45 lines
1.0 KiB
C++
#ifndef CDCLIENTMANAGER_H
|
|
#define CDCLIENTMANAGER_H
|
|
|
|
#define UNUSED_TABLE(v)
|
|
|
|
/**
|
|
* Initialize the CDClient tables so they are all loaded into memory.
|
|
*/
|
|
namespace CDClientManager {
|
|
void LoadValuesFromDatabase();
|
|
void LoadValuesFromDefaults();
|
|
|
|
/**
|
|
* Fetch a table from CDClient
|
|
*
|
|
* @tparam Table type to fetch
|
|
* @return A pointer to the requested table.
|
|
*/
|
|
template<typename T>
|
|
T* GetTable();
|
|
|
|
/**
|
|
* Fetch a table from CDClient
|
|
* Note: Calling this function without a template specialization in CDClientManager.cpp will cause a linker error.
|
|
*
|
|
* @tparam Table type to fetch
|
|
* @return A pointer to the requested table.
|
|
*/
|
|
template<typename T>
|
|
typename T::StorageType& GetEntriesMutable();
|
|
};
|
|
|
|
|
|
// These are included after the CDClientManager namespace declaration as CDTable as of Jan 29 2024 relies on CDClientManager in Templated code.
|
|
#include "CDTable.h"
|
|
|
|
#include "Singleton.h"
|
|
|
|
template<typename T>
|
|
T* CDClientManager::GetTable() {
|
|
return &T::Instance();
|
|
};
|
|
|
|
#endif //!CDCLIENTMANAGER_H
|