flower-1.0.25
[lilypond.git] / flower / findcurs.hh
blobe46b64dcd97c4fa71093aeea8b4ae7f897ee9854
1 template<class T, class U>
2 class FindCursor : public Cursor<T>
4 public:
5 FindCursor( List<T>& list, Link<T>* pointer = 0 );
6 FindCursor( const Cursor<T>& cursor );
8 Cursor<T> operator =( const Cursor<T>& c );
9 FindCursor<T, U> find( const T& thing );
12 #include "findcurs.inl"