typedefs on template classes

From: Alexander Malkis (alexloeschediesmalk_at_stone.cs.uni-sb.de)
Date: 03/31/04


Date: Wed, 31 Mar 2004 02:18:05 +0200


//I have
template<class T> class A {
//...
};

/* I would like to create a template type Aptr<T>, which is a family of
  pointer types, whose underlying types are A<T>. But the following
fails: */
template<class T>
typedef A<T> *Aptr<T>;

//How to create this template type Aptr correctly?

/*

-- 
Best regards,
Alex.
PS. To email me, remove "loeschedies" from the email address given.
*/