Quantum GIS API Documentation  1.7.5-Wroclaw
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
qgsprovidermetadata.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsprovidermetadata.cpp - 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 #include "qgsprovidermetadata.h"
21 
22 
23 
25  QString const & _description,
26  QString const & _library )
27  : key_( _key ),
28  description_( _description ),
29  library_( _library )
30 {}
31 
32 QString const & QgsProviderMetadata::key() const
33 {
34  return key_;
35 }
36 
37 QString const & QgsProviderMetadata::description() const
38 {
39  return description_;
40 }
41 
42 QString const & QgsProviderMetadata::library() const
43 {
44  return library_;
45 }