diff options
author | click <none@none> | 2010-08-18 07:17:04 +0200 |
---|---|---|
committer | click <none@none> | 2010-08-18 07:17:04 +0200 |
commit | 7d8146f9891e69ae1610fd19e3587b6d7048f4b5 (patch) | |
tree | 8a6c81e71431219abfe4bdcc091dfef2346b79ab /src/server/shared/Database/MySQLConnection.cpp | |
parent | 774eb840e9a7ddcf184c55240b5d932a6998866d (diff) |
Buildsystem/Core: Adjust header locations in CMake for collisions and shared + clean up includes from re26dbe6981
This sorts out issues with non-PCH compiles on supported platforms.
--HG--
branch : trunk
Diffstat (limited to 'src/server/shared/Database/MySQLConnection.cpp')
-rw-r--r-- | src/server/shared/Database/MySQLConnection.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/server/shared/Database/MySQLConnection.cpp b/src/server/shared/Database/MySQLConnection.cpp index cd28474c63d..24dcb166d49 100644 --- a/src/server/shared/Database/MySQLConnection.cpp +++ b/src/server/shared/Database/MySQLConnection.cpp @@ -16,10 +16,15 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include <mysql.h> +#include "Common.h" +#include "QueryResult.h" +#include "SQLOperation.h" #include "MySQLConnection.h" #include "DatabaseWorker.h" -#include "Utilities/Util.h" -#include "Utilities/Timer.h" +#include "Log.h" +#include "Util.h" +#include "Timer.h" MySQLConnection::MySQLConnection() : m_Mysql(NULL) @@ -241,4 +246,4 @@ void MySQLConnection::RollbackTransaction() void MySQLConnection::CommitTransaction() { Execute("COMMIT"); -}
\ No newline at end of file +} |