|
Quantum GIS API Documentation
master-ce49b66
|
00001 /*************************************************************************** 00002 qgscaleutils.h 00003 ---------------------- 00004 begin : July 2012 00005 copyright : (C) 2012 by Alexander Bruy 00006 email : alexander dot bruy at gmail dot com 00007 *************************************************************************** 00008 * * 00009 * This program is free software; you can redistribute it and/or modify * 00010 * it under the terms of the GNU General Public License as published by * 00011 * the Free Software Foundation; either version 2 of the License, or * 00012 * (at your option) any later version. * 00013 * * 00014 ***************************************************************************/ 00015 00016 #include <QString> 00017 #include <QStringList> 00018 00019 #ifndef QGSSCALEUTILS_H 00020 #define QGSSCALEUTILS_H 00021 00022 class CORE_EXPORT QgsScaleUtils 00023 { 00024 public: 00032 static bool saveScaleList( const QString &fileName, const QStringList &scales, QString &errorMessage ); 00033 00041 static bool loadScaleList( const QString &fileName, QStringList &scales, QString &errorMessage ); 00042 }; 00043 00044 #endif