It\'s been a long time since I\'ve done C++ and I\'m running into some trouble with classes referencing each other.
Right now I have something like:
a.h
You have to use Forward Declaration:
a.h
class b;
class a
{
  public:
    a();
    bool skeletonfunc(b temp);
}
However, in many situations, this can force you to work with references or pointers in your method calls or member variables, since you can't have the full types in both class headers. If the size of the type must be known, you need to use a reference or pointer. You can, however, use the type if only a method declaration is required.
Use forward declaration : http://en.wikipedia.org/wiki/Forward_declaration