Click here to Skip to main content
15,917,595 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: GPL Pin
Hamid_RT2-Jul-08 21:31
Hamid_RT2-Jul-08 21:31 
GeneralRe: GPL Pin
Dennis L2-Jul-08 21:54
Dennis L2-Jul-08 21:54 
AnswerRe: GPL - and bullying hippy teachers. Pin
Iain Clarke, Warrior Programmer2-Jul-08 23:20
Iain Clarke, Warrior Programmer2-Jul-08 23:20 
Questionheader-files Pin
testcrap2-Jul-08 20:03
testcrap2-Jul-08 20:03 
AnswerRe: header-files Pin
Stephen Hewitt2-Jul-08 20:13
Stephen Hewitt2-Jul-08 20:13 
GeneralRe: header-files Pin
Stephen Hewitt2-Jul-08 21:04
Stephen Hewitt2-Jul-08 21:04 
GeneralRe: header-files Pin
Iain Clarke, Warrior Programmer2-Jul-08 23:21
Iain Clarke, Warrior Programmer2-Jul-08 23:21 
AnswerRe: header-files Pin
Stephen Hewitt2-Jul-08 20:22
Stephen Hewitt2-Jul-08 20:22 
Perhaps something like this is what you're after:

In "ClassA.h":
// No need to include "class B"'s header.
 
class B; // Forward reference.
 
class A
{
...
private:
    ClassB &classB; // A reference to class B, not an instance.
};


In "ClassB.h":
// No need to include "class A"'s header.
 
class A; // Forward reference.
 
class B
{
...
private:
    ClassA &classA; // A reference to class A, not an instance.
};


Steve

GeneralRe: header-files Pin
testcrap2-Jul-08 20:39
testcrap2-Jul-08 20:39 
QuestionEasy Question Pin
C# Beginner Nick2-Jul-08 18:40
C# Beginner Nick2-Jul-08 18:40 
AnswerRe: Easy Question Pin
Hamid_RT2-Jul-08 20:14
Hamid_RT2-Jul-08 20:14 
GeneralRe: Easy Question Pin
C# Beginner Nick3-Jul-08 3:41
C# Beginner Nick3-Jul-08 3:41 
AnswerRe: Easy Question Pin
Mark Salsbery3-Jul-08 6:46
Mark Salsbery3-Jul-08 6:46 
GeneralRe: Easy Question Pin
C# Beginner Nick3-Jul-08 13:40
C# Beginner Nick3-Jul-08 13:40 
GeneralRe: Easy Question Pin
C# Beginner Nick3-Jul-08 17:14
C# Beginner Nick3-Jul-08 17:14 
Question// Ttrouble launching 2nd thread from MainWindow, beginner // Pin
RTrelles2-Jul-08 18:13
RTrelles2-Jul-08 18:13 
QuestionHow can I show only Cancel button on Messagebox Pin
sheshidar2-Jul-08 18:10
sheshidar2-Jul-08 18:10 
AnswerRe: How can I show only Cancel button on Messagebox Pin
Hamid_RT2-Jul-08 18:33
Hamid_RT2-Jul-08 18:33 
GeneralRe: How can I show only Cancel button on Messagebox Pin
Saurabh.Garg2-Jul-08 18:46
Saurabh.Garg2-Jul-08 18:46 
GeneralRe: How can I show only Cancel button on Messagebox Pin
Hamid_RT2-Jul-08 20:14
Hamid_RT2-Jul-08 20:14 
GeneralRe: How can I show only Cancel button on Messagebox Pin
Saurabh.Garg2-Jul-08 20:26
Saurabh.Garg2-Jul-08 20:26 
GeneralRe: How can I show only Cancel button on Messagebox Pin
Hamid_RT2-Jul-08 20:55
Hamid_RT2-Jul-08 20:55 
GeneralRe: How can I show only Cancel button on Messagebox Pin
Saurabh.Garg2-Jul-08 20:57
Saurabh.Garg2-Jul-08 20:57 
GeneralRe: How can I show only Cancel button on Messagebox Pin
Hamid_RT2-Jul-08 21:25
Hamid_RT2-Jul-08 21:25 
GeneralRe: How can I show only Cancel button on Messagebox Pin
Saurabh.Garg2-Jul-08 21:33
Saurabh.Garg2-Jul-08 21:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.