Click here to Skip to main content
16,010,553 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Howto code a variable replacement list Pin
AnTri16-May-04 20:52
AnTri16-May-04 20:52 
GeneralRe: Howto code a variable replacement list Pin
Tyrus18217-May-04 16:11
Tyrus18217-May-04 16:11 
QuestionWhere I can find a 16 Bit compiler? Pin
Behzad Ebrahimi16-May-04 4:34
Behzad Ebrahimi16-May-04 4:34 
AnswerRe: Where I can find a 16 Bit compiler? Pin
Ravi Bhavnani16-May-04 7:02
professionalRavi Bhavnani16-May-04 7:02 
GeneralRe: Where I can find a 16 Bit compiler? Pin
Behzad Ebrahimi17-May-04 3:14
Behzad Ebrahimi17-May-04 3:14 
GeneralRe: Where I can find a 16 Bit compiler? Pin
Ravi Bhavnani17-May-04 3:24
professionalRavi Bhavnani17-May-04 3:24 
GeneralC++ forward reference Pin
alex.barylski16-May-04 4:30
alex.barylski16-May-04 4:30 
GeneralRe: C++ forward reference Pin
Michael Dunn16-May-04 4:59
sitebuilderMichael Dunn16-May-04 4:59 
A forward reference tells the compiler about a type (usually a class/struct) without giving the full definition. Its purpose is similar to a function prototype in that regard.
You most often use them when two classes have to refer to each other.
class Bar; // forward reference
 
class Foo
{
  Bar* m_pBar; // ok because the compiler knows what "Bar" is
};
 
class Bar
{
  Foo m_foo;
};


--Mike--
Personal stuff:: Ericahist | Homepage
Shareware stuff:: 1ClickPicGrabber | RightClick-Encrypt
CP stuff:: CP SearchBar v2.0.2 | C++ Forum FAQ

----
You cannot truly appreciate Dilbert unless you've read it in the original Klingon.
GeneralRe: C++ forward reference Pin
alex.barylski16-May-04 5:07
alex.barylski16-May-04 5:07 
GeneralRe: C++ forward reference Pin
vividtang16-May-04 13:43
vividtang16-May-04 13:43 
GeneralMargin of error Pin
Muad-Dib16-May-04 4:25
Muad-Dib16-May-04 4:25 
GeneralWindow focus in MFC Pin
Anonymous16-May-04 3:04
Anonymous16-May-04 3:04 
GeneralRe: Window focus in MFC Pin
valikac16-May-04 5:32
valikac16-May-04 5:32 
QuestionHow to load exe and dll from memory, not disk Pin
MiCROHARD16-May-04 1:39
MiCROHARD16-May-04 1:39 
AnswerRe: How to load exe and dll from memory, not disk Pin
alex.barylski16-May-04 2:56
alex.barylski16-May-04 2:56 
AnswerRe: How to load exe and dll from memory, not disk Pin
vividtang16-May-04 13:29
vividtang16-May-04 13:29 
General#include <fstream> Pin
Muad-Dib16-May-04 1:23
Muad-Dib16-May-04 1:23 
GeneralRe: #include <fstream> Pin
Kamyar Souri16-May-04 2:09
Kamyar Souri16-May-04 2:09 
GeneralRe: #include <fstream> Pin
vividtang16-May-04 13:17
vividtang16-May-04 13:17 
GeneralRe: #include <fstream> Pin
Bob Stanneveld16-May-04 13:31
Bob Stanneveld16-May-04 13:31 
GeneralRe: #include <fstream> Pin
vividtang16-May-04 13:55
vividtang16-May-04 13:55 
GeneralRe: #include <fstream> Pin
Bob Stanneveld16-May-04 20:56
Bob Stanneveld16-May-04 20:56 
GeneralRegistry Pin
mmfried16-May-04 1:09
mmfried16-May-04 1:09 
GeneralRe: Registry Pin
Alexander M.,16-May-04 1:19
Alexander M.,16-May-04 1:19 
GeneralRe: Registry Pin
mmfried16-May-04 1:36
mmfried16-May-04 1:36 

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.