Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsmaplayerelevationproperties.cpp 3 : : --------------- 4 : : begin : November 2020 5 : : copyright : (C) 2020 by Nyall Dawson 6 : : email : nyall dot dawson dot com 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 : : #include "qgsmaplayerelevationproperties.h" 19 : : 20 : 0 : QgsMapLayerElevationProperties::QgsMapLayerElevationProperties( QObject *parent ) 21 : 0 : : QObject( parent ) 22 : 0 : { 23 : 0 : } 24 : : 25 : 0 : bool QgsMapLayerElevationProperties::hasElevation() const 26 : : { 27 : 0 : return false; 28 : : } 29 : : 30 : 0 : bool QgsMapLayerElevationProperties::isVisibleInZRange( const QgsDoubleRange & ) const 31 : : { 32 : 0 : return true; 33 : : } 34 : : 35 : 0 : QgsDoubleRange QgsMapLayerElevationProperties::calculateZRange( QgsMapLayer * ) const 36 : : { 37 : 0 : return QgsDoubleRange(); 38 : : }