I have a ptr_vector list of my own objects. Something like this:

boost::ptr_vector<SomeClass> *list;
list->push_back(new SomeClass()>;
...
BOOST_FOREACH(SomeClass *tempObj, list)   // [x]
{
   tempObj->...
}


>‘boost::ptr_vector<SomeClass>*’ is not a class, struct, or union type
link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

I think your problem is that you declared 'list' as a pointer to a boost::ptr_vector and are trying to use it as an automatic object.

IMHO the first line of your code snippet should read:

boost::ptr_vector<SomeClass> list;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.