summaryrefslogtreecommitdiffstats
path: root/src/sqlitestorage.h
diff options
context:
space:
mode:
authorGuillaume Melquiond <guillaume.melquiond@gmail.com>2007-01-02 20:24:52 +0000
committerGuillaume Melquiond <guillaume.melquiond@gmail.com>2007-01-02 20:24:52 +0000
commit59df651232df73c56b5dae587fa68e1e9f824755 (patch)
tree5dcbf28c41cb39558d903b1a43c956ae26caa0e6 /src/sqlitestorage.h
parent0a47b2fb30c83f8b021c2015891fe8c936ca6bf0 (diff)
downloadmanaserv-59df651232df73c56b5dae587fa68e1e9f824755.tar.gz
manaserv-59df651232df73c56b5dae587fa68e1e9f824755.tar.xz
manaserv-59df651232df73c56b5dae587fa68e1e9f824755.zip
Removed obsolete SQLite support.
Diffstat (limited to 'src/sqlitestorage.h')
-rw-r--r--src/sqlitestorage.h73
1 files changed, 0 insertions, 73 deletions
diff --git a/src/sqlitestorage.h b/src/sqlitestorage.h
deleted file mode 100644
index f2158e0..0000000
--- a/src/sqlitestorage.h
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * The Mana World Server
- * Copyright 2004 The Mana World Development Team
- *
- * This file is part of The Mana World.
- *
- * The Mana World is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * any later version.
- *
- * The Mana World is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with The Mana World; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
- */
-
-#ifndef _TMWSERV_SQLITESTORAGE_H_
-#define _TMWSERV_SQLITESTORAGE_H_
-
-#include "storage.h"
-
-#include "sqlite/SQLiteWrapper.h"
-
-/**
- * SQLite implemention of persistent dynamic data storage.
- */
-class SQLiteStorage : public Storage
-{
- public:
- /**
- * Constructor.
- */
- SQLiteStorage();
-
- /**
- * Destructor.
- */
- ~SQLiteStorage();
-
- /**
- * Save changes to database.
- */
- void flush();
-
- /**
- * Account count (test function)
- */
- unsigned int getAccountCount();
-
- /**
- * Get account & associated data
- */
- Account* getAccount(const std::string &username);
-
- protected:
- SQLiteWrapper sqlite; /**< Database */
- std::vector<Account*> accounts; /**< Loaded accounts */
- std::vector<Being*> characters; /**< Loaded characters */
-
- /**
- * Create tables if master is empty.
- */
- void createTablesIfNecessary();
-};
-
-#endif // _TMWSERV_SQLITESTORAGE_H_