mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
29 lines
1.2 KiB
C++
29 lines
1.2 KiB
C++
/***************************************************************************
|
|
qgsmaplayerconfigwidgetfactoryfactory.cpp
|
|
----------------------------------------
|
|
Date : 9.7.2013
|
|
Copyright : (C) 2013 Matthias Kuhn
|
|
Email : matthias dot kuhn at gmx dot ch
|
|
***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include "qgsmaplayerconfigwidgetfactory.h"
|
|
|
|
QgsMapLayerConfigWidgetFactory::QgsMapLayerConfigWidgetFactory( const QString &title, const QIcon &icon )
|
|
: mIcon( icon )
|
|
, mTitle( title )
|
|
{
|
|
}
|
|
|
|
bool QgsMapLayerConfigWidgetFactory::supportsLayer( QgsMapLayer *layer ) const
|
|
{
|
|
Q_UNUSED( layer );
|
|
return true;
|
|
}
|