Hello,
I have an application which uses a class called "rSharedPointer ". I want to
replace it with the Boost shared pointer but would like to keep the old name
and not modify any existing code.
I have tried doing the following:
typedef boost::shared_p tr<T> rSharedPointer;
and:
template<typena me T> typedef boost::shared_p tr<T> rSharedPointer;
But it will not compile?
Any ideas?
Jamie.
I have an application which uses a class called "rSharedPointer ". I want to
replace it with the Boost shared pointer but would like to keep the old name
and not modify any existing code.
I have tried doing the following:
typedef boost::shared_p tr<T> rSharedPointer;
and:
template<typena me T> typedef boost::shared_p tr<T> rSharedPointer;
But it will not compile?
Any ideas?
Jamie.
Comment