QGIS API Documentation  2.14.0-Essen
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 
35 class CORE_EXPORT QgsAuthMethodMetadata
36 {
37  public:
44  QgsAuthMethodMetadata( const QString & _key, const QString & _description, const QString & _library );
45 
50  QString key() const;
51 
56  QString description() const;
57 
62  QString library() const;
63 
64  private:
65 
67  QString key_;
68 
70  QString description_;
71 
73  QString library_;
74 };
75 
76 #endif // QGSAUTHMETHODMETADATA_H
Holds data auth method key, description, and associated shared library file information.