I've the below code,
template< typename T >
class T1 {
public:
T i;
protected:
T j;
private:
T k;
friend void Test();
};
The above code has a template class T1 with three members i,j and k and a friend function Test(),
I just want to know that which member/s of T1 will be available in function Test()?
Any help in this regard will be highly appreciated.