Click here to Skip to main content
15,913,090 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Question about Creating Directshow Filter with a callback Pin
godspeed12329-May-07 10:42
godspeed12329-May-07 10:42 
GeneralRe: Question about Creating Directshow Filter with a callback Pin
Mark Salsbery29-May-07 13:27
Mark Salsbery29-May-07 13:27 
GeneralRe: Question about Creating Directshow Filter with a callback Pin
godspeed12330-May-07 7:13
godspeed12330-May-07 7:13 
GeneralRe: Question about Creating Directshow Filter with a callback Pin
Mark Salsbery30-May-07 7:27
Mark Salsbery30-May-07 7:27 
GeneralRe: Question about Creating Directshow Filter with a callback Pin
godspeed12330-May-07 7:35
godspeed12330-May-07 7:35 
QuestionC++ basic question - parametrized and default constructors Pin
Vaclav_29-May-07 8:23
Vaclav_29-May-07 8:23 
AnswerRe: C++ basic question - parametrized and default constructors Pin
Mark Salsbery29-May-07 9:17
Mark Salsbery29-May-07 9:17 
AnswerRe: C++ basic question - parametrized and default constructors Pin
shiraztk29-May-07 10:05
shiraztk29-May-07 10:05 
Hi
How did you create your object ?

This could help you,

class Base
{
public:
Base(int k)
{
value = k;
}
private :
int value;
};

class Derived:public Base
{
public:
Derived(int k):Base(k)
{
}
private:
char s;
};

int main(int argc, char* argv[])
{
Derived object(10); // and not Derived object; This will give those
return 0; //errors as you mentioned.
}



Regards

The Best Religion is Science.
Once you understand it, you will know God.

GeneralRe: C++ basic question - parametrized and default constructors Pin
Vaclav_30-May-07 9:07
Vaclav_30-May-07 9:07 
QuestionHow to use a camera? Pin
smzhaq29-May-07 8:05
smzhaq29-May-07 8:05 
AnswerRe: How to use a camera? Pin
Vaclav_29-May-07 8:40
Vaclav_29-May-07 8:40 
AnswerRe: How to use a camera? Pin
Mark Salsbery29-May-07 9:11
Mark Salsbery29-May-07 9:11 
QuestionElegant way to read data from text file Pin
ldsdbomber29-May-07 7:31
ldsdbomber29-May-07 7:31 
AnswerRe: Elegant way to read data from text file Pin
David Crow29-May-07 8:03
David Crow29-May-07 8:03 
QuestionHow to use Create instead of LoadFrame Pin
prithaa29-May-07 7:11
prithaa29-May-07 7:11 
AnswerRe: How to use Create instead of LoadFrame Pin
Nibu babu thomas29-May-07 17:32
Nibu babu thomas29-May-07 17:32 
GeneralRe: How to use Create instead of LoadFrame Pin
prithaa29-May-07 18:03
prithaa29-May-07 18:03 
JokeHelp! [modified] Pin
Mark Salsbery29-May-07 6:55
Mark Salsbery29-May-07 6:55 
AnswerRe: Help! Pin
krmed29-May-07 7:02
krmed29-May-07 7:02 
GeneralRe: Help! Pin
David Crow29-May-07 7:27
David Crow29-May-07 7:27 
GeneralRe: Help! Pin
Mark Salsbery29-May-07 7:40
Mark Salsbery29-May-07 7:40 
GeneralRe: Help! Pin
toxcct29-May-07 8:24
toxcct29-May-07 8:24 
GeneralRe: Help! Pin
Mark Salsbery29-May-07 8:49
Mark Salsbery29-May-07 8:49 
QuestionHow to create a window that looks like MSN Live Messenger ? Pin
erajsri29-May-07 6:32
erajsri29-May-07 6:32 
AnswerRe: How to create a window that looks like MSN Live Messenger ? Pin
Perspx29-May-07 12:55
Perspx29-May-07 12:55 

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.