Branch data Line data Source code
1 : : /*************************************************************************** 2 : : QgsAbstractContentCache.cpp 3 : : ----------------- 4 : : begin : December 2018 5 : : copyright : (C) 2018 by Nyall Dawson 6 : : email : nyall dot dawson at gmail 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 "qgsabstractcontentcache.h" 19 : : 20 : : // 21 : : // QgsAbstractContentCacheEntry 22 : : // 23 : : 24 : 40 : QgsAbstractContentCacheEntry::QgsAbstractContentCacheEntry( const QString &path ) 25 : 40 : : path( path ) 26 : 40 : { 27 : 40 : } 28 : : 29 : : // 30 : : // QgsAbstractContentCacheBase 31 : : // 32 : : 33 : 15 : QgsAbstractContentCacheBase::QgsAbstractContentCacheBase( QObject *parent ) 34 : 15 : : QObject( parent ) 35 : 30 : {} 36 : : 37 : : 38 : 0 : void QgsAbstractContentCacheBase::onRemoteContentFetched( const QString &, bool ) 39 : : { 40 : : 41 : 0 : } 42 : : 43 : : 44 : : 45 : : 46 : :