Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsmaplayertemporalproperties.cpp 3 : : --------------- 4 : : begin : February 2020 5 : : copyright : (C) 2020 by Samweli Mwakisambwe 6 : : email : samweli at kartoza 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 "qgsmaplayertemporalproperties.h" 19 : : 20 : 78 : QgsMapLayerTemporalProperties::QgsMapLayerTemporalProperties( QObject *parent, bool enabled ) 21 : 78 : : QgsTemporalProperty( parent, enabled ) 22 : 156 : { 23 : 78 : } 24 : : 25 : 0 : bool QgsMapLayerTemporalProperties::isVisibleInTemporalRange( const QgsDateTimeRange & ) const 26 : : { 27 : 0 : return true; 28 : : } 29 : : 30 : 0 : QgsDateTimeRange QgsMapLayerTemporalProperties::calculateTemporalExtent( QgsMapLayer * ) const 31 : : { 32 : 0 : return QgsDateTimeRange(); 33 : 0 : } 34 : : 35 : 0 : QList<QgsDateTimeRange> QgsMapLayerTemporalProperties::allTemporalRanges( QgsMapLayer * ) const 36 : : { 37 : 0 : return {}; 38 : : }