summaryrefslogtreecommitdiffstats
path: root/src/dal
diff options
context:
space:
mode:
authorYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2010-11-14 13:18:14 +0100
committerYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2010-11-14 13:18:14 +0100
commit196c1c0bffa8bb594ff0a7442748030f47cc9c58 (patch)
treeb60b3e3eff38907e2d8a94ce6aa7e63cd1a741c8 /src/dal
parent23a94e7b154726599b9112b91ebedb32af9ff22c (diff)
downloadmanaserv-196c1c0bffa8bb594ff0a7442748030f47cc9c58.tar.gz
manaserv-196c1c0bffa8bb594ff0a7442748030f47cc9c58.tar.xz
manaserv-196c1c0bffa8bb594ff0a7442748030f47cc9c58.zip
Renamed .hpp files into .h for consistency.
Also added an header to the autoattack.{h,cpp} files. Big but trivial fix.
Diffstat (limited to 'src/dal')
-rw-r--r--src/dal/mysqldataprovider.h2
-rw-r--r--src/dal/sqlitedataprovider.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/dal/mysqldataprovider.h b/src/dal/mysqldataprovider.h
index 528d4be..02fc8ea 100644
--- a/src/dal/mysqldataprovider.h
+++ b/src/dal/mysqldataprovider.h
@@ -31,7 +31,7 @@
#include <climits>
#include "dataprovider.h"
-#include "common/configuration.hpp"
+#include "common/configuration.h"
#include "utils/logger.h"
namespace dal
diff --git a/src/dal/sqlitedataprovider.h b/src/dal/sqlitedataprovider.h
index 40ef361..3941364 100644
--- a/src/dal/sqlitedataprovider.h
+++ b/src/dal/sqlitedataprovider.h
@@ -24,7 +24,7 @@
#include <iosfwd>
#include "limits.h"
#include <sqlite3.h>
-#include "common/configuration.hpp"
+#include "common/configuration.h"
// sqlite3_int64 is the preferred new datatype for 64-bit int values.