Let's say i have an abstract class thats main purpose is to store a vector of numbers, called NumberVector. Then, I have two classes that inherit NumberVector that are called SortableNumberVector and SearchableNumberVector. Now, I want to make an adapter class that combines these two, and I make a class called SortableSearchableNumberVector, which inherits both of these. I want the final class to call functions from the inherited classes, but still retain data of it's own. Here's how I have laid it out:
class SortableSearchableNumberVector : public SearchableNumberVector, public SortableNumberVector
{
  protected:
       vector<int> numbers;
       int selectedNumber;
  public:
       void selectNumber(int index)
       { SearchableNumberVector::setSelected(index); }
       void sortNumbers()
       { SearchableNumberVector::sort(); }
}
When I run this, the two class variables are unchanged. What is causing this to happen?
