Click here to Skip to main content
15,886,199 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionCreating Global Objects Pin
ForNow17-Apr-09 6:58
ForNow17-Apr-09 6:58 
AnswerRe: Creating Global Objects Pin
CPallini17-Apr-09 7:07
mveCPallini17-Apr-09 7:07 
GeneralRe: Creating Global Objects Pin
ForNow17-Apr-09 12:28
ForNow17-Apr-09 12:28 
AnswerRe: Creating Global Objects Pin
led mike17-Apr-09 7:19
led mike17-Apr-09 7:19 
GeneralRe: Creating Global Objects Pin
ForNow18-Apr-09 15:42
ForNow18-Apr-09 15:42 
AnswerRe: Creating Global Objects Pin
Stuart Dootson17-Apr-09 9:01
professionalStuart Dootson17-Apr-09 9:01 
GeneralRe: Creating Global Objects Pin
CPallini17-Apr-09 9:12
mveCPallini17-Apr-09 9:12 
QuestionV-tables Pin
0x3c017-Apr-09 4:49
0x3c017-Apr-09 4:49 
Sorry about the vague subject title, but I can't really think of a better way to describe it. Say I have this class:
class Foo
{
public:
    Foo();
    ~Foo();
    virtual void DoSomething(void *p)
    {
        if(Next)
            Next->DoSomething(p);
    }
    Foo *Next;
};

I derive from it:
class Bar : public Foo
{
public:
    Bar();
    ~Bar()
    void DoSomething(void *p)
    {
        if(p)
            free(p);
    }
};

Say I call Bar->DoSomething((void *)0x1234). It will (hopefully) free the pointer. Is there any way to ensure that Bar does what it wants, then drops down to Foo's implementation afterwards?
AnswerRe: V-tables Pin
led mike17-Apr-09 5:49
led mike17-Apr-09 5:49 
GeneralRe: V-tables [modified] Pin
0x3c017-Apr-09 6:48
0x3c017-Apr-09 6:48 
GeneralRe: V-tables Pin
led mike17-Apr-09 7:02
led mike17-Apr-09 7:02 
GeneralRe: V-tables Pin
0x3c018-Apr-09 6:01
0x3c018-Apr-09 6:01 
GeneralRe: V-tables Pin
led mike21-Apr-09 12:01
led mike21-Apr-09 12:01 
GeneralRe: V-tables Pin
0x3c022-Apr-09 6:26
0x3c022-Apr-09 6:26 
GeneralRe: V-tables Pin
led mike23-Apr-09 4:41
led mike23-Apr-09 4:41 
GeneralRe: V-tables Pin
0x3c023-Apr-09 5:15
0x3c023-Apr-09 5:15 
QuestionSetting the default icon in the registry Pin
Like2Byte17-Apr-09 4:43
Like2Byte17-Apr-09 4:43 
AnswerRe: Setting the default icon in the registry Pin
led mike17-Apr-09 4:49
led mike17-Apr-09 4:49 
QuestionWhy this error happens? How to resolve this ? (Repost : Modified, now the error is different) Pin
kapardhi17-Apr-09 2:55
kapardhi17-Apr-09 2:55 
AnswerRe: Why this error happens? How to resolve this ? (Repost : Modified, now the error is different) Pin
Stuart Dootson17-Apr-09 3:12
professionalStuart Dootson17-Apr-09 3:12 
QuestionRegistry access problem Pin
Mogaambo17-Apr-09 2:08
Mogaambo17-Apr-09 2:08 
AnswerRe: Registry access problem Pin
Jijo.Raj17-Apr-09 2:14
Jijo.Raj17-Apr-09 2:14 
GeneralRe: Registry access problem Pin
Mogaambo17-Apr-09 2:19
Mogaambo17-Apr-09 2:19 
GeneralRe: Registry access problem Pin
Mogaambo17-Apr-09 2:27
Mogaambo17-Apr-09 2:27 
GeneralRe: Registry access problem Pin
Cedric Moonen17-Apr-09 2:31
Cedric Moonen17-Apr-09 2:31 

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.