mapnik/plugins/input/raster/raster_info.hpp

60 lines
1.9 KiB
C++
Raw Normal View History

2006-03-31 12:32:02 +02:00
/*****************************************************************************
*
2006-03-31 12:32:02 +02:00
* This file is part of Mapnik (c++ mapping toolkit)
2005-06-14 17:06:59 +02:00
*
2015-06-16 12:49:16 +02:00
* Copyright (C) 2015 Artem Pavlenko
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
2005-06-14 17:06:59 +02:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2006-03-31 12:32:02 +02:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*****************************************************************************/
2005-06-14 17:06:59 +02:00
#ifndef RASTER_INFO_HPP
#define RASTER_INFO_HPP
2005-06-14 17:06:59 +02:00
2005-09-21 22:27:37 +02:00
#include "raster_datasource.hpp"
// stl
2005-06-14 17:06:59 +02:00
#include <string>
2009-12-16 21:02:06 +01:00
using mapnik::box2d;
2005-06-14 17:06:59 +02:00
2005-09-21 22:27:37 +02:00
class raster_info
2005-06-14 17:06:59 +02:00
{
public:
2012-09-03 19:27:48 +02:00
raster_info(std::string const& file,
std::string const& format,
const box2d<double>& extent,
unsigned width,
unsigned height);
raster_info(const raster_info& rhs);
raster_info& operator=(const raster_info& rhs);
inline box2d<double> const& envelope() const {return extent_;}
inline std::string const& file() const { return file_;}
inline std::string const& format() const {return format_;}
inline unsigned width() const { return width_;}
inline unsigned height() const { return height_;}
2005-06-14 17:06:59 +02:00
private:
void swap(raster_info& other);
std::string file_;
std::string format_;
box2d<double> extent_;
unsigned width_;
unsigned height_;
2005-06-14 17:06:59 +02:00
};
#endif // RASTER_INFO_HPP