Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgstemporalrangeobject.cpp 3 : : --------------- 4 : : begin : January 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 "qgstemporalrangeobject.h" 19 : : 20 : 6 : QgsTemporalRangeObject::QgsTemporalRangeObject( bool enabled ) 21 : 6 : : mTemporal( enabled ) 22 : 6 : { 23 : 6 : } 24 : : 25 : 0 : void QgsTemporalRangeObject::setIsTemporal( bool enabled ) 26 : : { 27 : 0 : mTemporal = enabled; 28 : 0 : } 29 : : 30 : 0 : bool QgsTemporalRangeObject::isTemporal() const 31 : : { 32 : 0 : return mTemporal; 33 : : } 34 : : 35 : 0 : void QgsTemporalRangeObject::setTemporalRange( const QgsDateTimeRange &dateTimeRange ) 36 : : { 37 : 0 : if ( !isTemporal() ) 38 : 0 : setIsTemporal( true ); 39 : : 40 : 0 : mDateTimeRange = dateTimeRange; 41 : 0 : } 42 : : 43 : 0 : const QgsDateTimeRange &QgsTemporalRangeObject::temporalRange() const 44 : : { 45 : 0 : return mDateTimeRange; 46 : : } 47 : :