How to declare a vector of objects with no default constructor?

waleed 707 (11)
I'm having a problem with vectors. I need to create a vector of objects that don't have a default constructor. Any ideas are appreciated ;)

Thx in advance.
siavoshkc (21)
Can you explain more?
helios (10258)
You can't. std::vector requires that the type has a default constructor. If it's absolutely necessary, you can declare the vector as a vector of pointers to dynamically allocated objects.
waleed 707 (11)
helios u saved me, working with pointers was very hard but at last it worked, thank u very much :)
Topic archived. No new replies allowed.