QGIS API Documentation
2.8.2-Wien
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
src
core
raster
qgsrasteridentifyresult.cpp
Go to the documentation of this file.
1
/***************************************************************************
2
qgsrasteridentifyresult.cpp
3
--------------------------------------
4
Date : Apr 8, 2013
5
Copyright : (C) 2013 by Radim Blazek
6
email : radim dot blazek at gmail dot com
7
***************************************************************************/
8
9
/***************************************************************************
10
* *
11
* This program is free software; you can redistribute it and/or modify *
12
* it under the terms of the GNU General Public License as published by *
13
* the Free Software Foundation; either version 2 of the License, or *
14
* (at your option) any later version. *
15
* *
16
***************************************************************************/
17
18
//#include <QTime>
19
20
#include "
qgis.h
"
21
#include "
qgslogger.h
"
22
#include "
qgsrasteridentifyresult.h
"
23
#include "
qgsrasterdataprovider.h
"
24
25
QgsRasterIdentifyResult::QgsRasterIdentifyResult
()
26
: mValid( false )
27
, mFormat(
QgsRaster
::IdentifyFormatUndefined )
28
{
29
}
30
31
QgsRasterIdentifyResult::QgsRasterIdentifyResult
(
QgsRaster::IdentifyFormat
theFormat, QMap<int, QVariant> theResults )
32
: mValid( true )
33
, mFormat( theFormat )
34
, mResults( theResults )
35
{
36
}
37
38
QgsRasterIdentifyResult::QgsRasterIdentifyResult
(
QgsError
theError )
39
: mValid( false )
40
, mFormat(
QgsRaster
::IdentifyFormatUndefined )
41
, mError( theError )
42
{
43
}
44
45
QgsRasterIdentifyResult::~QgsRasterIdentifyResult
()
46
{
47
}
Generated on Sun May 10 2015 16:33:25 for QGIS API Documentation by
1.8.1.2