Tools.h++ Class Reference

Table Of Contents
bool yourTester(value_type a, void* d);
Client data may be passed through parameter d.
container_type
std();
const container_type
std() const;
Returns a reference to the underlying C++-standard collection that serves as the
implementation for self.
Related Global Operations
RWvostream&
operator<<(RWvostream& strm, const RWTPtrMap<K,T,C>& coll);
RWFile&
operator<<(RWFile& strm, const RWTPtrMap<K,T,C>& coll);
Saves the collection coll onto the output stream strm, or a reference to it if it has already
been saved.
RWvistream&
operator>>(RWvistream& strm, RWTPtrMap<K,T,C>& coll);
RWFile&
operator>>(RWFile& strm, RWTPtrMap<K,T,C>& coll);
Restores the contents of the collection coll from the input stream strm.
RWvistream&
operator>>(RWvistream& strm, RWTPtrMap<K,T,C>*& p);
RWFile&
operator>>(RWFile& strm, RWTPtrMap<K,T,C>*& p);
Looks at the next object on the input stream strm and either creates a new collection off
the heap and sets p to point to it, or sets p to point to a previously read instance. If a
collection is created off the heap, then you are responsible for deleting it.