Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsogrconnpool.cpp 3 : : --------------------- 4 : : begin : May 2015 5 : : copyright : (C) 2015 by Sandro Mani 6 : : email : smani at sourcepole dot ch 7 : : *************************************************************************** 8 : : * * 9 : : * This program is free software; you can redistribute it and/or modify * 10 : : * it under the terms of the GNU General Public License as published by * 11 : : * the Free Software Foundation; either version 2 of the License, or * 12 : : * (at your option) any later version. * 13 : : * * 14 : : ***************************************************************************/ 15 : : 16 : : #include "qgsogrconnpool.h" 17 : : ///@cond PRIVATE 18 : : 19 : : #include "qgslogger.h" 20 : : 21 : : QgsOgrConnPool *QgsOgrConnPool::sInstance = nullptr; 22 : : 23 : : // static public 24 : 957 : QgsOgrConnPool *QgsOgrConnPool::instance() 25 : : { 26 : 957 : if ( ! sInstance ) sInstance = new QgsOgrConnPool(); 27 : 957 : return sInstance; 28 : 0 : } 29 : : 30 : : // static public 31 : 3 : void QgsOgrConnPool::cleanupInstance() 32 : : { 33 : 3 : delete sInstance; 34 : 3 : sInstance = nullptr; 35 : 3 : } 36 : : 37 : 1 : QgsOgrConnPool::QgsOgrConnPool() : QgsConnectionPool<QgsOgrConn *, QgsOgrConnPoolGroup>() 38 : 2 : { 39 : 1 : QgsDebugCall; 40 : 1 : } 41 : : 42 : 2 : QgsOgrConnPool::~QgsOgrConnPool() 43 : 2 : { 44 : 1 : QgsDebugCall; 45 : 2 : } 46 : : 47 : : ///@endcond