QGIS API Documentation  2.18.21-Las Palmas (9fba24a)
qgscapabilitiescache.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgscapabilitiescache.h
3  ----------------------
4  begin : May 11th, 2011
5  copyright : (C) 2011 by Marco Hugentobler
6  email : marco dot hugentobler at sourcepole dot ch
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef QGSCAPABILITIESCACHE_H
19 #define QGSCAPABILITIESCACHE_H
20 
21 #include <QDomDocument>
22 #include <QFileSystemWatcher>
23 #include <QHash>
24 #include <QObject>
25 
28 class SERVER_EXPORT QgsCapabilitiesCache : public QObject
29 {
30  Q_OBJECT
31  public:
34 
39  const QDomDocument* searchCapabilitiesDocument( const QString& configFilePath, const QString& key );
40 
46  void insertCapabilitiesDocument( const QString& configFilePath, const QString& key, const QDomDocument* doc );
47 
52  void removeCapabilitiesDocument( const QString& path );
53 
54  private:
56  QFileSystemWatcher mFileSystemWatcher;
57 
58  private slots:
60  void removeChangedEntry( const QString &path );
61 };
62 
63 #endif // QGSCAPABILITIESCACHE_H
A cache for capabilities xml documents (by configuration file path)