Avoid Coordinate copies in DelaunayTriangulationBuilder::envelope
[geos.git] / tools / findclassfiles
blob05ac40171a0a6bdc254bb66c0bb1adffbb446507
1 #!/bin/sh
3 if test "x${1}" = "x"; then
4 echo "Usage: $0 <classname> [<package>]" >&2
5 exit 1
6 fi
8 classname="${1}"
9 package="."
11 if test "x${2}" != "x"; then
12 package="${2}"
15 # TODO: skip directory-only matches
16 find . -name '*.h' -o -name '*.inl' -o -name '*.cpp' \
17 | grep -wi "${classname}" \
18 | grep -i "${package}"