File indexing completed on 2023-10-03 03:28:36
0001 /*************************************************************************** 0002 cmapfilefilterbase.cpp 0003 ------------------- 0004 begin : Mon May 27 2002 0005 copyright : (C) 2002 by Kmud Developer Team 0006 email : kmud-devel@kmud.de 0007 ***************************************************************************/ 0008 0009 /*************************************************************************** 0010 * * 0011 * This program is free software; you can redistribute it and/or modify * 0012 * it under the terms of the GNU General Public License as published by * 0013 * the Free Software Foundation; either version 2 of the License, or * 0014 * (at your option) any later version. * 0015 * * 0016 ***************************************************************************/ 0017 0018 #include "cmapfilefilterbase.h" 0019 0020 #include "cmapmanager.h" 0021 0022 #include <ktemporaryfile.h> 0023 #include <kio/netaccess.h> 0024 #include <kio/jobclasses.h> 0025 0026 #include <qstring.h> 0027 0028 CMapFileFilterBase::CMapFileFilterBase(CMapManager *manager) 0029 { 0030 m_mapManager = manager; 0031 } 0032 0033 CMapFileFilterBase::~CMapFileFilterBase() 0034 { 0035 } 0036 0037