Use templates and other generic programming techniques as part of your design.
Here's a starter on templates:
http://www.cplusplus.com/doc/tutorial/templates/
Using boost any is most recommended, but an alternative that I think is better from a design perspective than the current accepted answer (if you want to minimize dependencies) is the following very simple implementation of a template wrapper that accepts and returns any type:
class IAnyType {}
template <class T>
class AnyType : public IAnyType
{
private:
T value_;
public:
AnyType(T value) : value_(value) {}
void set(T value) { value_ = value; }
T get() { return value_; }
};
Then, just make your queue hold IAnyType objects and store all arguments inside an AnyType object before adding it to the queue. You could certainly spruce this up a bit by overloading various assignment operators and make usage even simpler.