+ consistent file naming, cleaups

This commit is contained in:
Artem Pavlenko 2011-05-10 15:03:09 +00:00
parent ec0436fcd9
commit f811d096b5
6 changed files with 17 additions and 9 deletions

View file

@ -30,7 +30,7 @@ plugin_env = env.Clone()
shape_src = Split(
"""
dbfile.cpp
shape.cpp
shape_datasource.cpp
shape_featureset.cpp
shape_index_featureset.cpp
shape_io.cpp

View file

@ -32,9 +32,9 @@
#include <boost/filesystem/operations.hpp>
#include "shape_datasource.hpp"
#include "shape_featureset.hpp"
#include "shape_index_featureset.hpp"
#include "shape.hpp"
DATASOURCE_PLUGIN(shape_datasource)

View file

@ -20,16 +20,22 @@
*
*****************************************************************************/
#ifndef SHAPE_FS_HH
#define SHAPE_FS_HH
#ifndef SHAPE_FEATURESET_HPP
#define SHAPE_FEATURESET_HPP
#include <boost/scoped_ptr.hpp>
//mapnik
#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::box2d;
using mapnik::feature_ptr;
using mapnik::transcoder;
template <typename filterT>
class shape_featureset : public Featureset
@ -58,4 +64,4 @@ class shape_featureset : public Featureset
};
#endif //SHAPE_FS_HH
#endif //SHAPE_FEATURESET_HPP

View file

@ -26,7 +26,7 @@
#include <mapnik/geom_util.hpp>
#include <boost/scoped_ptr.hpp>
#include "shape.hpp"
#include "shape_datasource.hpp"
#include "shape_io.hpp"
#include <set>
#include <vector>

View file

@ -23,7 +23,9 @@
//$Id: shape_io.cc 26 2005-03-29 19:18:59Z pavlenko $
#include "shape_io.hpp"
#include "shape.hpp"
#include <mapnik/datasource.hpp>
// boost
#include <boost/filesystem/operations.hpp>
using mapnik::datasource_exception;