Changeset 1204
- Timestamp:
- 07/03/09 09:28:59 (13 months ago)
- Files:
-
- 1 modified
-
trunk/plugins/input/shape/shape_io.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/input/shape/shape_io.hpp
r628 r1204 21 21 *****************************************************************************/ 22 22 23 #ifndef SHAPE_IO_H H24 #define SHAPE_IO_H H23 #ifndef SHAPE_IO_HPP 24 #define SHAPE_IO_HPP 25 25 26 // mapnik 26 27 #include "dbffile.hpp" 27 28 #include "shapefile.hpp" 28 29 #include "shp_index.hpp" 30 // boost 31 #include <boost/utility.hpp> 29 32 30 33 using mapnik::geometry2d; 31 34 32 struct shape_io 35 struct shape_io : boost::noncopyable 33 36 { 34 37 static const std::string SHP; … … 77 80 geometry2d * read_polygonm(); 78 81 geometry2d * read_polygonz(); 79 private:80 //void read_record(const shape_record& record);81 // no copying82 shape_io(const shape_io&);83 shape_io& operator=(const shape_io&);84 82 }; 85 #endif //SHAPE_IO_HH 83 84 #endif //SHAPE_IO_HPP
