Connecting Tech Pros Worldwide Help | Site Map

friend class problem

 
LinkBack Thread Tools Search this Thread
  #1  
Old July 22nd, 2005, 05:10 AM
chandra sekhar
Guest
 
Posts: n/a
Default friend class problem

Hi All,

I have problem regarding the friend class.
I have a library where the class are declration is follows ( only
example )

class Frame
{
public:
protected:
void printFramemsg()
{
cout << " test... " << endl;
}
private:

// by making this we can access the protected members in the view

friend class View;
};

class View
{
public:
void setFrame(Frame* aFrame)
{
myFrame = aFrame;
}
void print()
{
myFrame->printFramemsg();
}
protected:
Frame* myFrame;
};

Now I want to derive the View class and access the protected and private
members of the Frame class..

class myView : public View
{
public:
void print_1()
{
myFrame->printFramemsg();
}
private:
};

Is any workarround or other way to do this .. ( Here I do not want to
derive a class from Frame ... )

Bye
Chandra


  #2  
Old July 22nd, 2005, 05:11 AM
Karl Heinz Buchegger
Guest
 
Posts: n/a
Default Re: friend class problem

chandra sekhar wrote:[color=blue]
>
> class View
> {
> public:
> void setFrame(Frame* aFrame)
> {
> myFrame = aFrame;
> }
> void print()
> {
> myFrame->printFramemsg();
> }
> protected:
> Frame* myFrame;
> };
>
> Now I want to derive the View class and access the protected and private members of the Frame
> class..[/color]

Why?
The Frame class has a public interface. You ought to use that, that's why
it exists.
[color=blue]
>
> class myView : public View
> {
> public:
> void print_1()
> {
> myFrame->printFramemsg();[/color]

myView is not a friend of the frame. But View (the base class of myView)
is. Thus:

View::print();


--
Karl Heinz Buchegger
kbuchegg@gascad.at
  #3  
Old July 22nd, 2005, 05:11 AM
Ernst Murnleitner
Guest
 
Posts: n/a
Default Re: friend class problem

Dear Chandra,

There is no way for inheritance of friendship. So, you have to make the
derived class a also a friend.
With private members there is no other way.
But with protected members I don not know, as I never had to use friends.

I would derive a class MyFrame from Frame. Here you can access the protected
member of Frame. Make the function for accessing public and you need no
friends - or make it protected or private and make MyView a friend of
MyFrame.

Greetings
Ernst


 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 220,989 network members.