Show invite menu in wlm chat window immediately
[kdenetwork.git] / kopete / plugins / statistics / statisticsdb.h
blob98314081c1cd4b158ba3e5a10bb7a405f1829c65
1 /*
2 statisticsdb.h
4 Copyright (c) 2003-2004 by Marc Cramdal <marc.cramdal@gmail.com>
6 Copyright (c) 2007 by the Kopete Developers <kopete-devel@kde.org>
8 *************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 *************************************************************************
18 #ifndef _STATISTICSDB_H
19 #define _STATISTICSDB_H
21 #include <QSqlDatabase>
23 class StatisticsDB
26 public:
27 StatisticsDB();
28 ~StatisticsDB();
29 //sql helper methods
30 QStringList query ( const QString& statement, QStringList* const names = 0, bool debug = false );
31 QString escapeString ( QString string );
32 private:
33 QSqlDatabase m_db;
36 #endif