MAJVER=1
MINVER=0
-PATCHLEVEL=10
+PATCHLEVEL=11
PACKAGENAME=flower
VERSION=$(MAJVER).$(MINVER).$(PATCHLEVEL)
DNAME=$(PACKAGENAME)-$(VERSION)
-DEFINES=-DNDEBUG -DNPRINT -O2
+DEFINES=-DNDEBUG -O2
#DEFINES=-g
CXXFLAGS+=$(DEFINES) -Wall -W -pedantic
public:
PCursor<T> top() { return PCursor<T> (List<void*>::top()); }
PCursor<T> bottom() { return PCursor<T> (List<void*>::bottom()); }
+ PCursor<T> find(T) const;
void concatenate(PointerList<T> const &s) { List<void*>::concatenate(s); }
-// PointerList( const T& thing ) : List<void*>( thing ) { }
PointerList() {}
};