Quantum GIS API Documentation  1.7.5-Wroclaw
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
qgsprovidermetadata.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsprovidermetadata.h - Metadata class for
3  describing a data provider.
4  -------------------
5  begin : Sat Jan 10 2004
6  copyright : (C) 2004 by Gary E.Sherman
7  email : sherman at mrcc.com
8  ***************************************************************************/
9 
10 /***************************************************************************
11  * *
12  * This program is free software; you can redistribute it and/or modify *
13  * it under the terms of the GNU General Public License as published by *
14  * the Free Software Foundation; either version 2 of the License, or *
15  * (at your option) any later version. *
16  * *
17  ***************************************************************************/
18 /* $Id$ */
19 
20 #ifndef QGSPROVIDERMETADATA_H
21 #define QGSPROVIDERMETADATA_H
22 
23 
24 #include <QString>
25 
38 class CORE_EXPORT QgsProviderMetadata
39 {
40  public:
41 
42  QgsProviderMetadata( QString const & _key, QString const & _description, QString const & _library );
43 
48  QString const & key() const;
49 
54  QString const & description() const;
55 
60  QString const & library() const;
61 
62  private:
63 
65  QString key_;
66 
68  QString description_;
69 
71  QString library_;
72 
73 }; // class QgsProviderMetadata
74 
75 #endif //QGSPROVIDERMETADATA_H
76