Click here to Skip to main content
15,909,498 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Virus Scanner Pin
fordge14-Jan-04 12:46
fordge14-Jan-04 12:46 
GeneralRe: Virus Scanner Pin
David Crow15-Jan-04 3:34
David Crow15-Jan-04 3:34 
GeneralCHTTPFile SendRequest. Pin
murali_utr13-Jan-04 19:02
murali_utr13-Jan-04 19:02 
GeneralI Got it Pin
murali_utr13-Jan-04 21:23
murali_utr13-Jan-04 21:23 
GeneralRe: CHTTPFile SendRequest. Pin
22491713-Jan-04 21:29
22491713-Jan-04 21:29 
GeneralCFileDialog Pin
Member 80845913-Jan-04 17:28
Member 80845913-Jan-04 17:28 
GeneralRe: CFileDialog Pin
22491713-Jan-04 21:41
22491713-Jan-04 21:41 
GeneralRe: CFileDialog Pin
Christian Graus13-Jan-04 17:28
protectorChristian Graus13-Jan-04 17:28 
GeneralRe: CFileDialog Pin
TWS_Dave13-Jan-04 23:26
TWS_Dave13-Jan-04 23:26 
GeneralDisable ASSERTS Pin
misha_grewal13-Jan-04 16:55
misha_grewal13-Jan-04 16:55 
GeneralRe: Disable ASSERTS Pin
Christian Graus13-Jan-04 17:24
protectorChristian Graus13-Jan-04 17:24 
GeneralRe: Disable ASSERTS Pin
Rob Manderson13-Jan-04 23:06
protectorRob Manderson13-Jan-04 23:06 
GeneralRe: Disable ASSERTS Pin
rpins13-Jan-04 17:27
rpins13-Jan-04 17:27 
GeneralRe: Disable ASSERTS Pin
l a u r e n13-Jan-04 18:32
l a u r e n13-Jan-04 18:32 
GeneralRe: Disable ASSERTS Pin
Prakash Nadar13-Jan-04 22:55
Prakash Nadar13-Jan-04 22:55 
GeneralRe: Disable ASSERTS Pin
misha_grewal13-Jan-04 23:13
misha_grewal13-Jan-04 23:13 
GeneralNext Dll Question ;) Pin
bryce13-Jan-04 15:33
bryce13-Jan-04 15:33 
GeneralRe: Next Dll Question ;) Pin
bryce13-Jan-04 17:45
bryce13-Jan-04 17:45 
GeneralRe: Next Dll Question ;) Pin
Buddhike de Silva13-Jan-04 18:32
Buddhike de Silva13-Jan-04 18:32 
Question"Unhandled exception in Test.ex[MSCTF.DLL]:0XC0000005:Access Violation"??? Pin
zhaopzhi13-Jan-04 15:17
zhaopzhi13-Jan-04 15:17 
Questionhow can i send/receive packets to POP3/IMAP server Pin
chirag_chauhan13-Jan-04 15:06
chirag_chauhan13-Jan-04 15:06 
AnswerRe: how can i send/receive packets to POP3/IMAP server Pin
murali_utr13-Jan-04 18:15
murali_utr13-Jan-04 18:15 
GeneralCircular inclusions... Pin
Anonymous13-Jan-04 15:04
Anonymous13-Jan-04 15:04 
GeneralRe: Circular inclusions... Pin
Christian Graus13-Jan-04 17:26
protectorChristian Graus13-Jan-04 17:26 
GeneralRe: Circular inclusions... Pin
Ryan Binns13-Jan-04 17:35
Ryan Binns13-Jan-04 17:35 
Anonymous wrote:
A uses both B and C as private data members, and B and C each use A as a private data member.

You can't do this. This basically creates a class that has an infinite size since A includes B which includes A which includes B etc. The way to do this is to include a pointer to A inside B and C, and then a forward declaration of A in the include files for B and C will work nicely.

Hope this helps,

Ryan
"Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late" John Nichol "Point Of Impact"

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.