mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-26 20:02:25 +01:00
Add missing declarations as of recent merge
--HG-- branch : trunk
This commit is contained in:
@@ -52,7 +52,7 @@ class DatabaseWorkerPool
|
||||
{
|
||||
public:
|
||||
DatabaseWorkerPool() :
|
||||
m_queue(new ACE_Activation_Queue(new ACE_Message_Queue<ACE_MT_SYNCH>)),
|
||||
m_queue(new ACE_Activation_Queue(new ACE_Message_Queue<ACE_MT_SYNCH>))
|
||||
{
|
||||
memset(m_connectionCount, 0, sizeof(m_connectionCount));
|
||||
m_connections.resize(IDX_SIZE);
|
||||
|
||||
@@ -26,6 +26,7 @@ class CharacterDatabaseConnection : public MySQLConnection
|
||||
public:
|
||||
//- Constructors for sync and async connections
|
||||
CharacterDatabaseConnection(MySQLConnectionInfo& connInfo) : MySQLConnection(connInfo) {}
|
||||
CharacterDatabaseConnection(ACE_Activation_Queue* q, MySQLConnectionInfo& connInfo) : MySQLConnection(q, connInfo) {}
|
||||
|
||||
//- Loads databasetype specific prepared statements
|
||||
bool Open();
|
||||
|
||||
@@ -26,6 +26,7 @@ class LoginDatabaseConnection : public MySQLConnection
|
||||
public:
|
||||
//- Constructors for sync and async connections
|
||||
LoginDatabaseConnection(MySQLConnectionInfo& connInfo) : MySQLConnection(connInfo) {}
|
||||
LoginDatabaseConnection(ACE_Activation_Queue* q, MySQLConnectionInfo& connInfo) : MySQLConnection(q, connInfo) {}
|
||||
|
||||
//- Loads databasetype specific prepared statements
|
||||
bool Open();
|
||||
|
||||
@@ -26,6 +26,7 @@ class WorldDatabaseConnection : public MySQLConnection
|
||||
public:
|
||||
//- Constructors for sync and async connections
|
||||
WorldDatabaseConnection(MySQLConnectionInfo& connInfo) : MySQLConnection(connInfo) {}
|
||||
WorldDatabaseConnection(ACE_Activation_Queue* q, MySQLConnectionInfo& connInfo) : MySQLConnection(q, connInfo) {}
|
||||
|
||||
//- Loads databasetype specific prepared statements
|
||||
bool Open();
|
||||
|
||||
Reference in New Issue
Block a user