im using g++ on ubuntu 10.10

i have a pointer to a vector of pointers to objects and i want to call a method on each of those objects.
oc->features is defined as:

vector<Feature* >* features;

i have to do:

Code:
vector<Feature*>::iterator it;
    for (it=oc->features->begin();it!=oc->features->end();it++){
        
        Feature* a=*(it);
...