summaryrefslogtreecommitdiff
path: root/src/storage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/storage.cpp')
-rw-r--r--src/storage.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/storage.cpp b/src/storage.cpp
index 8d066130..4fd9a7e0 100644
--- a/src/storage.cpp
+++ b/src/storage.cpp
@@ -22,7 +22,8 @@
*/
#include "storage.h"
-#include "sqlitestorage.h"
+#include "dalstorage.h"
+//#include "sqlitestorage.h"
Storage *Storage::instance = NULL;
@@ -39,7 +40,7 @@ Storage *Storage::getInstance()
{
if (instance == NULL)
{
- instance = new SQLiteStorage();
+ instance = new DALStorage(); //SQLiteStorage();
}
return instance;