QGIS API Documentation  2.12.0-Lyon
qgsauthmethodmetadata.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsauthmethodmetadata.h
3  ---------------------
4  begin : September 1, 2015
5  copyright : (C) 2015 by Boundless Spatial, Inc. USA
6  author : Larry Shaffer
7  email : lshaffer at boundlessgeo dot com
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  ***************************************************************************/
16 
17 #ifndef QGSAUTHMETHODMETADATA_H
18 #define QGSAUTHMETHODMETADATA_H
19 
20 #include <QString>
21 
34 class CORE_EXPORT QgsAuthMethodMetadata
35 {
36  public:
43  QgsAuthMethodMetadata( const QString & _key, const QString & _description, const QString & _library );
44 
49  const QString & key() const;
50 
55  const QString & description() const;
56 
61  const QString & library() const;
62 
63  private:
64 
66  QString key_;
67 
69  QString description_;
70 
72  QString library_;
73 };
74 
75 #endif // QGSAUTHMETHODMETADATA_H
Holds data auth method key, description, and associated shared library file information.