/usr/include/geos/geom/MultiLineString.h is in libgeos-dev 3.2.2-3ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | /**********************************************************************
* $Id: MultiLineString.h 2556 2009-06-06 22:22:28Z strk $
*
* GEOS - Geometry Engine Open Source
* http://geos.refractions.net
*
* Copyright (C) 2001-2002 Vivid Solutions Inc.
* Copyright (C) 2005 2006 Refractions Research Inc.
*
* This is free software; you can redistribute and/or modify it under
* the terms of the GNU Lesser General Public Licence as published
* by the Free Software Foundation.
* See the COPYING file for more information.
*
**********************************************************************
*
* Last port: geom/MultiLineString.java rev. 1.40
*
**********************************************************************/
#ifndef GEOS_GEOS_MULTILINESTRING_H
#define GEOS_GEOS_MULTILINESTRING_H
#include <geos/export.h>
#include <geos/geom/GeometryCollection.h> // for inheritance
//#include <geos/platform.h>
#include <geos/geom/Dimension.h>
#include <string>
#include <vector>
#include <geos/inline.h>
// Forward declarations
namespace geos {
namespace geom { // geos::geom
class Coordinate;
class CoordinateArraySequence;
}
}
namespace geos {
namespace geom { // geos::geom
/// Basic implementation of MultiLineString objects.
class GEOS_DLL MultiLineString: public GeometryCollection {
public:
friend class GeometryFactory;
virtual ~MultiLineString();
/// Returns line dimension (1)
Dimension::DimensionType getDimension() const;
/**
* \brief
* Returns Dimension::False if all LineStrings in the collection
* are closed, 0 otherwise.
*/
int getBoundaryDimension() const;
/// Returns a (possibly empty) MultiPoint
Geometry* getBoundary() const;
std::string getGeometryType() const;
virtual GeometryTypeId getGeometryTypeId() const;
bool isClosed() const;
bool equalsExact(const Geometry *other, double tolerance=0) const;
Geometry *clone() const;
/**
* Creates a MultiLineString in the reverse
* order to this object.
* Both the order of the component LineStrings
* and the order of their coordinate sequences
* are reversed.
*
* @return a MultiLineString in the reverse order
*/
MultiLineString* reverse() const;
protected:
/**
* \brief Constructs a <code>MultiLineString</code>.
*
* @param newLines
* The <code>LineStrings</code>s for this
* <code>MultiLineString</code>, or <code>null</code>
* or an empty array to create the empty geometry.
* Elements may be empty <code>LineString</code>s,
* but not <code>null</code>s.
*
* Constructed object will take ownership of
* the vector and its elements.
*
* @param newFactory
* The GeometryFactory used to create this geometry.
* Caller must keep the factory alive for the life-time
* of the constructed MultiLineString.
*
*/
MultiLineString(std::vector<Geometry *> *newLines,
const GeometryFactory *newFactory);
MultiLineString(const MultiLineString &mp);
};
} // namespace geos::geom
} // namespace geos
#ifdef GEOS_INLINE
# include "geos/geom/MultiLineString.inl"
#endif
#endif // ndef GEOS_GEOS_MULTILINESTRING_H
/**********************************************************************
* $Log$
* Revision 1.5 2006/05/04 15:49:39 strk
* updated all Geometry::getDimension() methods to return Dimension::DimensionType (closes bug#93)
*
* Revision 1.4 2006/04/28 10:55:39 strk
* Geometry constructors made protected, to ensure all constructions use GeometryFactory,
* which has been made friend of all Geometry derivates. getNumPoints() changed to return
* size_t.
*
* Revision 1.3 2006/03/24 09:52:41 strk
* USE_INLINE => GEOS_INLINE
*
* Revision 1.2 2006/03/23 12:12:01 strk
* Fixes to allow build with -DGEOS_INLINE
*
* Revision 1.1 2006/03/09 16:46:49 strk
* geos::geom namespace definition, first pass at headers split
*
**********************************************************************/
|