What\'s the best solution to forward declare a typedef within a class. Here\'s an example of what I need to solve:
class A; class B; class A { typedef boos
There's no way to forward declare either
typedef
So - you can't forward declare a typedef and if you could, you still wouldn't be able to do that, because you'd need to do this:
class B::Ptr;
and that's not possible