Peter Moulder wrote:
> class Foo {
>...
>+ class Bar;
>+ friend class Bar;
> class Bar {
>
>
Can anyone comment on this, i.e. in standard C++, are Foo::Bar private
things automatically visible to Foo methods?
I do know that on ealier versions of gcc, adding the "friend" statement
was required.