+ consistent file naming, cleaups
This commit is contained in:
parent
ec0436fcd9
commit
f811d096b5
6 changed files with 17 additions and 9 deletions
|
@ -30,7 +30,7 @@ plugin_env = env.Clone()
|
||||||
shape_src = Split(
|
shape_src = Split(
|
||||||
"""
|
"""
|
||||||
dbfile.cpp
|
dbfile.cpp
|
||||||
shape.cpp
|
shape_datasource.cpp
|
||||||
shape_featureset.cpp
|
shape_featureset.cpp
|
||||||
shape_index_featureset.cpp
|
shape_index_featureset.cpp
|
||||||
shape_io.cpp
|
shape_io.cpp
|
||||||
|
|
|
@ -32,9 +32,9 @@
|
||||||
#include <boost/filesystem/operations.hpp>
|
#include <boost/filesystem/operations.hpp>
|
||||||
|
|
||||||
|
|
||||||
|
#include "shape_datasource.hpp"
|
||||||
#include "shape_featureset.hpp"
|
#include "shape_featureset.hpp"
|
||||||
#include "shape_index_featureset.hpp"
|
#include "shape_index_featureset.hpp"
|
||||||
#include "shape.hpp"
|
|
||||||
|
|
||||||
DATASOURCE_PLUGIN(shape_datasource)
|
DATASOURCE_PLUGIN(shape_datasource)
|
||||||
|
|
|
@ -20,16 +20,22 @@
|
||||||
*
|
*
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
#ifndef SHAPE_FS_HH
|
#ifndef SHAPE_FEATURESET_HPP
|
||||||
#define SHAPE_FS_HH
|
#define SHAPE_FEATURESET_HPP
|
||||||
|
|
||||||
#include <boost/scoped_ptr.hpp>
|
//mapnik
|
||||||
#include <mapnik/geom_util.hpp>
|
#include <mapnik/geom_util.hpp>
|
||||||
#include "shape.hpp"
|
#include <mapnik/datasource.hpp>
|
||||||
|
|
||||||
|
#include "shape_io.hpp"
|
||||||
|
|
||||||
|
//boost
|
||||||
|
#include <boost/scoped_ptr.hpp>
|
||||||
|
|
||||||
using mapnik::Featureset;
|
using mapnik::Featureset;
|
||||||
using mapnik::box2d;
|
using mapnik::box2d;
|
||||||
using mapnik::feature_ptr;
|
using mapnik::feature_ptr;
|
||||||
|
using mapnik::transcoder;
|
||||||
|
|
||||||
template <typename filterT>
|
template <typename filterT>
|
||||||
class shape_featureset : public Featureset
|
class shape_featureset : public Featureset
|
||||||
|
@ -58,4 +64,4 @@ class shape_featureset : public Featureset
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //SHAPE_FS_HH
|
#endif //SHAPE_FEATURESET_HPP
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include <mapnik/geom_util.hpp>
|
#include <mapnik/geom_util.hpp>
|
||||||
#include <boost/scoped_ptr.hpp>
|
#include <boost/scoped_ptr.hpp>
|
||||||
|
|
||||||
#include "shape.hpp"
|
#include "shape_datasource.hpp"
|
||||||
#include "shape_io.hpp"
|
#include "shape_io.hpp"
|
||||||
#include <set>
|
#include <set>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
|
@ -23,7 +23,9 @@
|
||||||
//$Id: shape_io.cc 26 2005-03-29 19:18:59Z pavlenko $
|
//$Id: shape_io.cc 26 2005-03-29 19:18:59Z pavlenko $
|
||||||
|
|
||||||
#include "shape_io.hpp"
|
#include "shape_io.hpp"
|
||||||
#include "shape.hpp"
|
|
||||||
|
#include <mapnik/datasource.hpp>
|
||||||
|
// boost
|
||||||
#include <boost/filesystem/operations.hpp>
|
#include <boost/filesystem/operations.hpp>
|
||||||
|
|
||||||
using mapnik::datasource_exception;
|
using mapnik::datasource_exception;
|
||||||
|
|
Loading…
Add table
Reference in a new issue