// foo.h

class Foo {
public:
  Foo();
  int bar(int i) const;
  int bar(int i);
private:
  int x;
};
