I have something like this:
class Bar
      {
      public:
        pair<string,string> one;
        std::vector<string> cars;
        Bar(string one, string two, string car);
      };
class Car
      {
      public:
        string rz;
        Bar* owner;
        Car(string car, Bar* p);
      };
class Foo
       {
         public:
          Foo  ( void );
          ~Foo  ( void );
          int Count ( const string & one, const string &  two) const;
          int comparator (const Bar & first, const Bar & second) const;            
            std::vector<Bar> bars;
       };
int Foo::comparator(const Bar & first, const Bar & second) const{
  return first.name < second.name;
}
int Foo::Count  ( const string & one, const string & two ) const{
  int result=0;
  Bar mybar = Bar( one, two, "" );
  std::vector<Bar>::iterator ToFind = lower_bound(bars.begin(), bars.end(), mybar, comparator);
  if (ToFind != bars.end() && ToFind->one == mybar.one ){
    result = ...
  }
  return result;
}
The method Foo::Count should use std::lower_bound() to find element in vector<Bar> according to pair of two strings. 
Now the part which doesn't work. To lower_bound() I'm providing method comparator(). I thought it was okay, but g++ says: 
c.cpp: In member function ‘int Foo::Count(const string&, const string&) const’:
c.cpp:42:94: error: invalid use of non-static member function
std::vector<Bar>::iterator ToFind = lower_bound(bars.begin(), bars.end(), mybar, comparator);
And the method Count() must stay const...
I'm quite new to C++ because I'm forced to learn it.
Any ideas?
 
     
     
     
     
    