Click here to Skip to main content
15,908,254 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Where can I get 'dxerr8.h'? Pin
knokke6-Nov-03 23:07
knokke6-Nov-03 23:07 
Questionhow to write a com which will be called in asp using vc++? Pin
zhangxinghai6-Nov-03 2:05
zhangxinghai6-Nov-03 2:05 
AnswerRe: how to write a com which will be called in asp using vc++? Pin
valikac6-Nov-03 5:41
valikac6-Nov-03 5:41 
GeneralMulticast in c++ Pin
styve6-Nov-03 0:03
styve6-Nov-03 0:03 
GeneralRe: Multicast in c++ Pin
Giles6-Nov-03 0:39
Giles6-Nov-03 0:39 
GeneralRe: Multicast in c++ Pin
Igor Proskuriakov6-Nov-03 1:11
Igor Proskuriakov6-Nov-03 1:11 
Generalimplementation Pin
Anonymous5-Nov-03 23:38
Anonymous5-Nov-03 23:38 
GeneralRe: implementation Pin
Mike Beckerleg6-Nov-03 4:56
Mike Beckerleg6-Nov-03 4:56 
The declarations for a class are what is normally contained in the header file for the class, for example:

class Calculator
{
public:
Calculator();
~Calculator();

float Sqrt(float i);
}

The defintions of the functions are contained in the .cpp file for the class. A client of the class only needs to include the header file for the class with the declarations of the members. It doesn't need to know how the members are implemented, it just needs their declarations. In the .cpp you can implement the members however you like, and change the implementation as much as you like without needing to recompile the clinet code. The client code only requires recompilation if the declarations in the header file change.
QuestionHow do I use a COM component in Java? Pin
melwyn5-Nov-03 23:34
melwyn5-Nov-03 23:34 
AnswerRe: How do I use a COM component in Java? Pin
antlers6-Nov-03 10:33
antlers6-Nov-03 10:33 
GeneralRe: How do I use a COM component in Java? Pin
melwyn6-Nov-03 20:29
melwyn6-Nov-03 20:29 
GeneralRe: How do I use a COM component in Java? Pin
antlers7-Nov-03 12:06
antlers7-Nov-03 12:06 
QuestionWait for program to terminate? Pin
Dominik Reichl5-Nov-03 23:19
Dominik Reichl5-Nov-03 23:19 
AnswerRe: Wait for program to terminate? Pin
Joaquín M López Muñoz6-Nov-03 0:07
Joaquín M López Muñoz6-Nov-03 0:07 
GeneralRe: Wait for program to terminate? Pin
Dominik Reichl6-Nov-03 0:49
Dominik Reichl6-Nov-03 0:49 
GeneralRe: Wait for program to terminate? Pin
Joaquín M López Muñoz6-Nov-03 0:56
Joaquín M López Muñoz6-Nov-03 0:56 
AnswerRe: Wait for program to terminate? Pin
Brian Shifrin6-Nov-03 3:51
Brian Shifrin6-Nov-03 3:51 
Generalimplementation and interface Pin
Anonymous5-Nov-03 22:47
Anonymous5-Nov-03 22:47 
GeneralRe: implementation and interface Pin
Joaquín M López Muñoz6-Nov-03 0:14
Joaquín M López Muñoz6-Nov-03 0:14 
GeneralRe: implementation and interface Pin
valikac6-Nov-03 5:44
valikac6-Nov-03 5:44 
GeneralCustomDraw in Listctrl Pin
super5-Nov-03 22:25
professionalsuper5-Nov-03 22:25 
GeneralRe: CustomDraw in Listctrl Pin
Dominik Reichl5-Nov-03 23:23
Dominik Reichl5-Nov-03 23:23 
GeneralCreating forms for outlook with C++ Pin
Anonymous5-Nov-03 22:04
Anonymous5-Nov-03 22:04 
GeneralGlobal variables???? VC++ 6.0 Pin
Anonymous5-Nov-03 21:03
Anonymous5-Nov-03 21:03 
GeneralRe: Global variables???? VC++ 6.0 Pin
Ted Ferenc5-Nov-03 21:56
Ted Ferenc5-Nov-03 21:56 

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.