Click here to Skip to main content
16,005,467 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: FillBuffer Pin
David Crow23-Jun-05 9:22
David Crow23-Jun-05 9:22 
GeneralRe: FillBuffer Pin
Andrew Admire23-Jun-05 9:30
Andrew Admire23-Jun-05 9:30 
GeneralRe: FillBuffer Pin
David Crow23-Jun-05 9:33
David Crow23-Jun-05 9:33 
GeneralRe: FillBuffer Pin
Andrew Admire23-Jun-05 9:38
Andrew Admire23-Jun-05 9:38 
GeneralRe: FillBuffer Pin
David Crow23-Jun-05 9:43
David Crow23-Jun-05 9:43 
GeneralRe: FillBuffer Pin
Andrew Admire23-Jun-05 9:45
Andrew Admire23-Jun-05 9:45 
Generalclass referencing problem Pin
zildjohn0123-Jun-05 7:40
zildjohn0123-Jun-05 7:40 
GeneralRe: class referencing problem Pin
Chris Losinger23-Jun-05 7:42
professionalChris Losinger23-Jun-05 7:42 
class1.h
#pragma once
#include "class2.h"
 
class class2; // <-- forward declaration. do the same thing in class2.h

class class1 {
  private:
  class2 *child1;
  class2 *child2;
public:
  class1() 
  {
    child1 = new class2();
    child1->Init();
    child2 = new class2();
    child2->Init();
  }
};



Cleek | Image Toolkits | Thumbnail maker

GeneralRe: class referencing problem Pin
John Simon23-Jun-05 7:52
John Simon23-Jun-05 7:52 
GeneralRe: class referencing problem Pin
Jose Lamas Rios23-Jun-05 7:48
Jose Lamas Rios23-Jun-05 7:48 
Generalnew problem Pin
John Simon23-Jun-05 9:35
John Simon23-Jun-05 9:35 
GeneralRe: new problem Pin
Jose Lamas Rios23-Jun-05 10:34
Jose Lamas Rios23-Jun-05 10:34 
GeneralRe: new problem Pin
John Simon23-Jun-05 11:37
John Simon23-Jun-05 11:37 
Generaltext box Pin
trigger9123-Jun-05 6:43
susstrigger9123-Jun-05 6:43 
GeneralRe: text box Pin
Trollslayer23-Jun-05 6:48
mentorTrollslayer23-Jun-05 6:48 
GeneralRe: text box Pin
David Crow23-Jun-05 6:54
David Crow23-Jun-05 6:54 
GeneralRe: text box Pin
Trollslayer23-Jun-05 7:33
mentorTrollslayer23-Jun-05 7:33 
GeneralRe: text box Pin
David Crow23-Jun-05 8:02
David Crow23-Jun-05 8:02 
GeneralRe: text box Pin
Trollslayer23-Jun-05 8:32
mentorTrollslayer23-Jun-05 8:32 
GeneralRe: text box Pin
David Crow23-Jun-05 9:11
David Crow23-Jun-05 9:11 
GeneralRe: text box Pin
Trollslayer23-Jun-05 9:46
mentorTrollslayer23-Jun-05 9:46 
GeneralRe: text box Pin
David Crow23-Jun-05 9:48
David Crow23-Jun-05 9:48 
GeneralRe: text box Pin
trigger9123-Jun-05 7:03
susstrigger9123-Jun-05 7:03 
GeneralRe: text box Pin
Trollslayer23-Jun-05 7:38
mentorTrollslayer23-Jun-05 7:38 
GeneralRe: text box Pin
David Crow23-Jun-05 8:03
David Crow23-Jun-05 8:03 

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.