Core/PacketIO: Removed SMSG_DESTROY_OBJECT from opcodes enum

This commit is contained in:
Shauren
2015-01-01 20:38:19 +01:00
parent 1f8f8fc5a5
commit ccc293931d
9 changed files with 22 additions and 22 deletions

View File

@@ -28,7 +28,7 @@ class SQLQueryHolder
std::vector<SQLResultPair> m_queries;
public:
SQLQueryHolder() { }
~SQLQueryHolder();
virtual ~SQLQueryHolder();
bool SetQuery(size_t index, const char *sql);
bool SetPQuery(size_t index, const char *format, ...) ATTR_PRINTF(3, 4);
bool SetPreparedQuery(size_t index, PreparedStatement* stmt);