- copyright fixes in postgis plugin
This commit is contained in:
parent
62c0760a6a
commit
290ca729ba
6 changed files with 15 additions and 28 deletions
|
@ -2,7 +2,7 @@
|
|||
*
|
||||
* This file is part of Mapnik (c++ mapping toolkit)
|
||||
*
|
||||
* Copyright (C) 2006 Artem Pavlenko
|
||||
* Copyright (C) 2011 Artem Pavlenko
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -20,17 +20,14 @@
|
|||
*
|
||||
*****************************************************************************/
|
||||
|
||||
//$Id: connection.hpp 17 2005-03-08 23:58:43Z pavlenko $
|
||||
|
||||
#ifndef CONNECTION_HPP
|
||||
#define CONNECTION_HPP
|
||||
|
||||
#include <mapnik/datasource.hpp>
|
||||
#include <boost/make_shared.hpp>
|
||||
|
||||
extern "C"
|
||||
{
|
||||
#include "libpq-fe.h"
|
||||
extern "C" {
|
||||
#include "libpq-fe.h"
|
||||
}
|
||||
|
||||
#include "resultset.hpp"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
*
|
||||
* This file is part of Mapnik (c++ mapping toolkit)
|
||||
*
|
||||
* Copyright (C) 2006 Artem Pavlenko
|
||||
* Copyright (C) 2011 Artem Pavlenko
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -20,8 +20,6 @@
|
|||
*
|
||||
*****************************************************************************/
|
||||
|
||||
//$Id: connection_manager.hpp 17 2005-03-08 23:58:43Z pavlenko $
|
||||
|
||||
#ifndef CONNECTION_MANAGER_HPP
|
||||
#define CONNECTION_MANAGER_HPP
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
*
|
||||
* This file is part of Mapnik (c++ mapping toolkit)
|
||||
*
|
||||
* Copyright (C) 2006 Artem Pavlenko
|
||||
* Copyright (C) 2011 Artem Pavlenko
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -20,17 +20,15 @@
|
|||
*
|
||||
*****************************************************************************/
|
||||
|
||||
//$Id: postgis.cc 44 2005-04-22 18:53:54Z pavlenko $
|
||||
#include "connection_manager.hpp"
|
||||
#include "postgis_datasource.hpp"
|
||||
#include "postgis_featureset.hpp"
|
||||
|
||||
// mapnik
|
||||
#include <mapnik/global.hpp>
|
||||
#include <mapnik/ptree_helpers.hpp>
|
||||
#include <mapnik/sql_utils.hpp>
|
||||
|
||||
#include "connection_manager.hpp"
|
||||
#include "postgis_datasource.hpp"
|
||||
#include "postgis_featureset.hpp"
|
||||
|
||||
// boost
|
||||
#include <boost/algorithm/string.hpp>
|
||||
#include <boost/lexical_cast.hpp>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
*
|
||||
* This file is part of Mapnik (c++ mapping toolkit)
|
||||
*
|
||||
* Copyright (C) 2006 Artem Pavlenko
|
||||
* Copyright (C) 2011 Artem Pavlenko
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
|
|
@ -20,7 +20,9 @@
|
|||
*
|
||||
*****************************************************************************/
|
||||
|
||||
//$Id$
|
||||
#include "postgis_featureset.hpp"
|
||||
#include "resultset.hpp"
|
||||
#include "cursorresultset.hpp"
|
||||
|
||||
// mapnik
|
||||
#include <mapnik/global.hpp>
|
||||
|
@ -29,10 +31,6 @@
|
|||
#include <mapnik/sql_utils.hpp>
|
||||
#include <mapnik/feature_factory.hpp>
|
||||
|
||||
#include "postgis_featureset.hpp"
|
||||
#include "resultset.hpp"
|
||||
#include "cursorresultset.hpp"
|
||||
|
||||
// boost
|
||||
#include <boost/lexical_cast.hpp>
|
||||
#include <boost/algorithm/string.hpp>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
*
|
||||
* This file is part of Mapnik (c++ mapping toolkit)
|
||||
*
|
||||
* Copyright (C) 2006 Artem Pavlenko
|
||||
* Copyright (C) 2011 Artem Pavlenko
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -20,15 +20,11 @@
|
|||
*
|
||||
*****************************************************************************/
|
||||
|
||||
//$Id: resultset.hpp 17 2005-03-08 23:58:43Z pavlenko $
|
||||
|
||||
|
||||
#ifndef RESULTSET_HPP
|
||||
#define RESULTSET_HPP
|
||||
|
||||
extern "C"
|
||||
{
|
||||
#include "libpq-fe.h"
|
||||
extern "C" {
|
||||
#include "libpq-fe.h"
|
||||
}
|
||||
|
||||
class IResultSet
|
||||
|
|
Loading…
Reference in a new issue