/usr/include/qgis/qgsscaleutils.h is in libqgis-dev 2.8.6+dfsg-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | /***************************************************************************
qgscaleutils.h
----------------------
begin : July 2012
copyright : (C) 2012 by Alexander Bruy
email : alexander dot bruy at gmail dot com
***************************************************************************
* *
* 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 <QString>
#include <QStringList>
#ifndef QGSSCALEUTILS_H
#define QGSSCALEUTILS_H
class CORE_EXPORT QgsScaleUtils
{
public:
/** save scales to the given file
* @param fileName the name of the output file
* @param scales the list of scales to save
* @param errorMessage it will contain the error message if something
* went wrong
* @return true on success and false if failed
*/
static bool saveScaleList( const QString &fileName, const QStringList &scales, QString &errorMessage );
/** load scales from the given file
* @param fileName the name of the file to process
* @param scales it will contain loaded scales
* @param errorMessage it will contain the error message if something
* went wrong
* @return true on success and false if failed
*/
static bool loadScaleList( const QString &fileName, QStringList &scales, QString &errorMessage );
};
#endif
|