source: trunk/plugins/src/sqldrivers/ibase/main.cpp

Last change on this file was 204, checked in by rudi, 14 years ago

Added plugin source code

File size: 2.1 KB
Line 
1/****************************************************************************
2**
3** Implementation of Interbase driver plugin
4**
5** Created : 001103
6**
7** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.
8**
9** This file is part of the sql module of the Qt GUI Toolkit.
10**
11** This file may be distributed under the terms of the Q Public License
12** as defined by Trolltech ASA of Norway and appearing in the file
13** LICENSE.QPL included in the packaging of this file.
14**
15** This file may be distributed and/or modified under the terms of the
16** GNU General Public License version 2 as published by the Free Software
17** Foundation and appearing in the file LICENSE.GPL included in the
18** packaging of this file.
19**
20** Licensees holding valid Qt Enterprise Edition licenses may use this
21** file in accordance with the Qt Commercial License Agreement provided
22** with the Software.
23**
24** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
25** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
26**
27** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
28** information about Qt Commercial License Agreements.
29** See http://www.trolltech.com/qpl/ for QPL licensing information.
30** See http://www.trolltech.com/gpl/ for GPL licensing information.
31**
32** Contact info@trolltech.com if any conditions of this licensing are
33** not clear to you.
34**
35**********************************************************************/
36
37#include <qsqldriverplugin.h>
38#include "../../../../src/sql/drivers/ibase/qsql_ibase.h"
39
40class QIBaseDriverPlugin : public QSqlDriverPlugin
41{
42public:
43 QIBaseDriverPlugin();
44
45 QSqlDriver* create( const QString & );
46 QStringList keys() const;
47};
48
49QIBaseDriverPlugin::QIBaseDriverPlugin()
50 : QSqlDriverPlugin()
51{
52}
53
54QSqlDriver* QIBaseDriverPlugin::create( const QString &name )
55{
56 if ( name == "QIBASE" ) {
57 QIBaseDriver* driver = new QIBaseDriver();
58 return driver;
59 }
60 return 0;
61}
62
63QStringList QIBaseDriverPlugin::keys() const
64{
65 QStringList l;
66 l << "QIBASE";
67 return l;
68}
69
70Q_EXPORT_PLUGIN( QIBaseDriverPlugin )
Note: See TracBrowser for help on using the repository browser.