mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-18 00:03:05 -04:00
[server] C++ 11 style default virtual destructor
This commit is contained in:
parent
0f7dfc9285
commit
1a6b977386
@ -23,8 +23,3 @@ QgsServerInterface::QgsServerInterface():
|
|||||||
mConfigFilePath( QString() )
|
mConfigFilePath( QString() )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
QgsServerInterface::~QgsServerInterface()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
@ -57,7 +57,7 @@ class SERVER_EXPORT QgsServerInterface
|
|||||||
//! Constructor
|
//! Constructor
|
||||||
QgsServerInterface();
|
QgsServerInterface();
|
||||||
|
|
||||||
virtual ~QgsServerInterface() = 0;
|
virtual ~QgsServerInterface() = default;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the request handler
|
* Set the request handler
|
||||||
|
Loading…
x
Reference in New Issue
Block a user