/src/geos/src/noding/SegmentString.cpp
Line | Count | Source |
1 | | /********************************************************************** |
2 | | * |
3 | | * GEOS - Geometry Engine Open Source |
4 | | * http://geos.osgeo.org |
5 | | * |
6 | | * Copyright (C) 2011 Sandro Santilli <strk@kbt.io> |
7 | | * Copyright (C) 2005-2006 Refractions Research Inc. |
8 | | * Copyright (C) 2001-2002 Vivid Solutions Inc. |
9 | | * |
10 | | * This is free software; you can redistribute and/or modify it under |
11 | | * the terms of the GNU Lesser General Licence as published |
12 | | * by the Free Software Foundation. |
13 | | * See the COPYING file for more information. |
14 | | * |
15 | | ********************************************************************** |
16 | | * |
17 | | * Last port: noding/SegmentString.java r430 (JTS-1.12+) |
18 | | * |
19 | | **********************************************************************/ |
20 | | |
21 | | #include <geos/noding/SegmentString.h> |
22 | | //#include <geos/noding/SegmentNodeList.h> |
23 | | //#include <geos/algorithm/LineIntersector.h> |
24 | | //#include <geos/geom/Coordinate.h> |
25 | | //#include <geos/geom/CoordinateSequence.h> |
26 | | //#include <geos/util/IllegalArgumentException.h> |
27 | | //#include <geos/noding/Octant.h> |
28 | | //#include <geos/profiler.h> |
29 | | |
30 | | #ifndef GEOS_DEBUG |
31 | | #define GEOS_DEBUG 0 |
32 | | #endif |
33 | | |
34 | | #include <iostream> |
35 | | #include <sstream> |
36 | | |
37 | | using namespace geos::algorithm; |
38 | | using namespace geos::geom; |
39 | | |
40 | | namespace geos { |
41 | | namespace noding { // geos.noding |
42 | | |
43 | | std::ostream& |
44 | | operator<< (std::ostream& os, const SegmentString& ss) |
45 | 0 | { |
46 | 0 | return ss.print(os); |
47 | 0 | } |
48 | | |
49 | | std::ostream& |
50 | | SegmentString::print(std::ostream& os) const |
51 | 0 | { |
52 | 0 | os << "SegmentString" << std::endl; |
53 | 0 | return os; |
54 | 0 | } |
55 | | |
56 | | } // namespace geos.noding |
57 | | } // namespace geos |
58 | | |