File indexing completed on 2024-04-21 04:03:07

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 CMapFileFilterBase::CMapFileFilterBase(CMapManager *manager)
0021 {
0022     m_mapManager = manager;
0023 }
0024 
0025 CMapFileFilterBase::~CMapFileFilterBase()
0026 {
0027 }
0028 
0029