Click here to Skip to main content
15,887,676 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: compile main.c Pin
Niklas L22-Aug-10 8:20
Niklas L22-Aug-10 8:20 
GeneralRe: compile main.c Pin
Luc Pattyn22-Aug-10 8:49
sitebuilderLuc Pattyn22-Aug-10 8:49 
GeneralRe: compile main.c Pin
Niklas L22-Aug-10 22:30
Niklas L22-Aug-10 22:30 
AnswerRe: compile main.c Pin
Code-o-mat21-Aug-10 22:31
Code-o-mat21-Aug-10 22:31 
Questionsql Pin
albertodiprima21-Aug-10 17:34
albertodiprima21-Aug-10 17:34 
AnswerRe: sql Pin
Dr.Walt Fair, PE21-Aug-10 18:47
professionalDr.Walt Fair, PE21-Aug-10 18:47 
GeneralRe: sql Pin
albertodiprima21-Aug-10 18:52
albertodiprima21-Aug-10 18:52 
QuestionHow to postpone implementation of abstract class in c++ Pin
tasumisra20-Aug-10 17:49
tasumisra20-Aug-10 17:49 
can anybody let me how to postpone implementation of abstract class methods
#include<iostream>
using namespace std;
class abstrs
{
public:
	virtual int add(int i,int j)=0;
	virtual int Substract(int i,int j)=0;


};
class derieved : public abstrs
{
public :
virtual	int add(int i,int c)
	{
	return 100;
	
	}//i dont want to implement this piece of code as of now.
	/*virtual	int Substract(int i,int c)
	{
	return 100;
	}*/

};
int main()
{
	derieved dr;
	int count=dr.add(12,34);
	cout<<g;

}

vikas da

AnswerRe: How to postpone implementation of abstract class in c++ Pin
Tim Craig20-Aug-10 18:09
Tim Craig20-Aug-10 18:09 
GeneralRe: How to postpone implementation of abstract class in c++ Pin
tasumisra20-Aug-10 18:21
tasumisra20-Aug-10 18:21 
GeneralRe: How to postpone implementation of abstract class in c++ Pin
Aescleal20-Aug-10 21:15
Aescleal20-Aug-10 21:15 
AnswerRe: How to postpone implementation of abstract class in c++ PinPopular
Aescleal20-Aug-10 21:11
Aescleal20-Aug-10 21:11 
AnswerRe: How to postpone implementation of abstract class in c++ Pin
Niklas L20-Aug-10 22:04
Niklas L20-Aug-10 22:04 
GeneralRe: How to postpone implementation of abstract class in c++ Pin
tasumisra20-Aug-10 22:42
tasumisra20-Aug-10 22:42 
QuestionPreventing CD copy Pin
RomTibi20-Aug-10 7:32
RomTibi20-Aug-10 7:32 
QuestionRe: Preventing CD copy Pin
David Crow20-Aug-10 10:50
David Crow20-Aug-10 10:50 
AnswerRe: Preventing CD copy Pin
RomTibi22-Aug-10 5:40
RomTibi22-Aug-10 5:40 
AnswerRe: Preventing CD copy PinPopular
Emilio Garavaglia20-Aug-10 11:36
Emilio Garavaglia20-Aug-10 11:36 
GeneralRe: Preventing CD copy Pin
RomTibi21-Aug-10 21:16
RomTibi21-Aug-10 21:16 
Questiondocument support in MFC dll Pin
MKC00220-Aug-10 4:35
MKC00220-Aug-10 4:35 
AnswerRe: document support in MFC dll Pin
Eugen Podsypalnikov20-Aug-10 5:43
Eugen Podsypalnikov20-Aug-10 5:43 
GeneralRe: document support in MFC dll Pin
Niklas L20-Aug-10 5:46
Niklas L20-Aug-10 5:46 
JokeRe: document support in MFC dll Pin
Eugen Podsypalnikov20-Aug-10 5:57
Eugen Podsypalnikov20-Aug-10 5:57 
GeneralRe: document support in MFC dll Pin
Nuri Ismail20-Aug-10 7:01
Nuri Ismail20-Aug-10 7:01 
GeneralRe: document support in MFC dll Pin
MKC00220-Aug-10 9:01
MKC00220-Aug-10 9:01 

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.