summaryrefslogtreecommitdiff
path: root/src/storage.cpp
diff options
context:
space:
mode:
authorAaron Marks <nymacro@gmail.com>2005-06-17 08:12:59 +0000
committerAaron Marks <nymacro@gmail.com>2005-06-17 08:12:59 +0000
commit836536c2478cac29f905464ab0f53b98af77c6b1 (patch)
treee4db5a812ae93822a269a43267ad809084680550 /src/storage.cpp
parent87b80322385aaa86317229e7e32f970a66f59de7 (diff)
downloadmanaserv-836536c2478cac29f905464ab0f53b98af77c6b1.tar.gz
manaserv-836536c2478cac29f905464ab0f53b98af77c6b1.tar.bz2
manaserv-836536c2478cac29f905464ab0f53b98af77c6b1.tar.xz
manaserv-836536c2478cac29f905464ab0f53b98af77c6b1.zip
Updated Makefile.am.
dataproviderfactory.cpp now conditionally includes related dataprovider header. (A problem exists with instantiating Being in dalstorage.cpp though)
Diffstat (limited to 'src/storage.cpp')
-rw-r--r--src/storage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/storage.cpp b/src/storage.cpp
index 4fd9a7e0..bb2bd6aa 100644
--- a/src/storage.cpp
+++ b/src/storage.cpp
@@ -40,7 +40,7 @@ Storage *Storage::getInstance()
{
if (instance == NULL)
{
- instance = new DALStorage(); //SQLiteStorage();
+ instance = new tmwserv::DALStorage(); //SQLiteStorage();
}
return instance;