Navigation Menu

Skip to content

Commit

Permalink
qgsvectorlayer.h includes
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Sep 5, 2018
1 parent 4540061 commit 6363041
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/server/qgsserverinterfaceimpl.cpp
Expand Up @@ -95,6 +95,10 @@ void QgsServerInterfaceImpl::registerServerCache( QgsServerCacheFilter *serverCa
#endif
}

QgsServerCacheManager *QgsServerInterfaceImpl::cacheManager() const
{
return mCacheManager.get();
}

void QgsServerInterfaceImpl::removeConfigCacheEntry( const QString &path )
{
Expand Down
3 changes: 2 additions & 1 deletion src/server/qgsserverinterfaceimpl.h
Expand Up @@ -24,6 +24,7 @@

#include "qgsserverinterface.h"
#include "qgscapabilitiescache.h"
#include "qgsservercachemanager.h"

/**
* \ingroup server
Expand Down Expand Up @@ -74,7 +75,7 @@ class QgsServerInterfaceImpl : public QgsServerInterface
* \returns the server cache helper
* \since QGIS 3.4
*/
QgsServerCacheManager *cacheManager() const override { return mCacheManager.get(); }
QgsServerCacheManager *cacheManager() const override;

QString getEnv( const QString &name ) const override;
QString configFilePath() override { return mConfigFilePath; }
Expand Down
1 change: 1 addition & 0 deletions src/server/services/wfs/qgswfsutils.cpp
Expand Up @@ -25,6 +25,7 @@
#include "qgsconfigcache.h"
#include "qgsserverprojectutils.h"
#include "qgswfsparameters.h"
#include "qgsvectorlayer.h"

namespace QgsWfs
{
Expand Down
1 change: 1 addition & 0 deletions src/server/services/wms/qgswmsgetcapabilities.cpp
Expand Up @@ -39,6 +39,7 @@

#include "qgsexception.h"
#include "qgsexpressionnodeimpl.h"
#include "qgsvectorlayer.h"


namespace QgsWms
Expand Down
1 change: 1 addition & 0 deletions tests/src/core/testqgsvectorlayerutils.cpp
Expand Up @@ -15,6 +15,7 @@
#include "qgstest.h"

#include "qgsvectorlayerutils.h"
#include "qgsvectorlayer.h"

/**
* \ingroup UnitTests
Expand Down

0 comments on commit 6363041

Please sign in to comment.