I want to use the std::queue in an program. But later I may change to an other implementation of queues. I have a header with all my typedefs but typedef dont works for std::queue. Is there a way to have something simular to an typedef for std::queue?
Edit: I dont want a typedef for a specific type like this:
typedef std::queue<int> IntQueue;
I tryed this
template <class T>
typedef std::queue<T> Queue;