You need
friend class two;
instead
friend two;
In addition, you do not need to forward the ads individually, because the friend declaration is itself a declaration. You can even do this:
//no forward-declaration of two class one { friend class two; two* mem; }; class two{};
source share