Index:
[thread]
[date]
[subject]
[author]
From: Garrett Mitchener <wgm2@duke.edu>
To :
Date: 04 Mar 1999 20:16:59 -0500
Re: Another scary story
"Philip K. Warren" <pkw@duke.edu> writes:
> Wanna expound a bit on the reversed-order part? =)
>
> -- Philip
Here are some hints, cryptic of course:
1. begin(), end(), rbegin(), rend()
and
2.
template<class Type>
class Compare
{
public:
virtual bool Compare( const Type & left, const Type & right ) = 0;
};
template<class Type>
class Mephistopheles : public Compare<Type>
{
private:
Compare & myC;
public:
Mephistopheles( Compare & c )
: myC(c)
{}
???
};
-- "The Crypt Keeper" :-)
Index:
[thread]
[date]
[subject]
[author]