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

C / C++ / MFC

 
GeneralRe: compiler generated function Pin
sheetal_068-Feb-07 1:16
sheetal_068-Feb-07 1:16 
GeneralRe: compiler generated function Pin
prasad_som8-Feb-07 1:27
prasad_som8-Feb-07 1:27 
AnswerRe: compiler generated function Pin
David Crow8-Feb-07 3:40
David Crow8-Feb-07 3:40 
GeneralRe: compiler generated function Pin
prasad_som8-Feb-07 4:27
prasad_som8-Feb-07 4:27 
AnswerRe: compiler generated function Pin
Mark Salsbery8-Feb-07 6:13
Mark Salsbery8-Feb-07 6:13 
GeneralRe: compiler generated function Pin
sheetal_068-Feb-07 17:01
sheetal_068-Feb-07 17:01 
GeneralRe: compiler generated function Pin
Mark Salsbery8-Feb-07 17:05
Mark Salsbery8-Feb-07 17:05 
GeneralRe: compiler generated function Pin
sheetal_068-Feb-07 17:13
sheetal_068-Feb-07 17:13 
CPtrArray is a member of CSpanLoad...


class CPtrArray : public CObject
{
//does not implement operator=

}

class __declspec ( dllexport ) CCASObject : public CObject
{
public:
virtual void operator=( const CCADSObject& ){}};


class CSpanLoad : public CCASObject
{
public:
void operator=( const CCASObject& );
private:
CPtrArray aPointArrays;
};

//spanload.cpp
void CSpanLoad::operator=( const CCASObject &src )
{

//....
}

//Import.cpp
int CImport::ReadLoadCategoryData()
{
CSpanLoad *pA3Ld,*pBDLd;
*pA3Ld = *pBDLd; //this assignment is giving error in VS8.In VC6 it was not showing the error;
}
GeneralRe: compiler generated function Pin
Mark Salsbery8-Feb-07 17:17
Mark Salsbery8-Feb-07 17:17 
GeneralRe: compiler generated function Pin
sheetal_068-Feb-07 17:24
sheetal_068-Feb-07 17:24 
GeneralRe: compiler generated function Pin
Mark Salsbery8-Feb-07 17:30
Mark Salsbery8-Feb-07 17:30 
GeneralRe: compiler generated function Pin
sheetal_068-Feb-07 17:41
sheetal_068-Feb-07 17:41 
QuestionWin 32 console application Pin
ShilpiP7-Feb-07 19:39
ShilpiP7-Feb-07 19:39 
AnswerRe: Win 32 console application Pin
San24687-Feb-07 19:59
San24687-Feb-07 19:59 
AnswerRe: Win 32 console application Pin
San24687-Feb-07 20:02
San24687-Feb-07 20:02 
AnswerRe: Win 32 console application Pin
ThatsAlok7-Feb-07 20:03
ThatsAlok7-Feb-07 20:03 
AnswerRe: Win 32 console application Pin
Hamid_RT7-Feb-07 20:06
Hamid_RT7-Feb-07 20:06 
AnswerRe: Win 32 console application Pin
Stephen Hewitt7-Feb-07 20:08
Stephen Hewitt7-Feb-07 20:08 
AnswerRe: Win 32 console application Pin
Xing Chen7-Feb-07 20:12
Xing Chen7-Feb-07 20:12 
GeneralRe: Win 32 console application Pin
Cedric Moonen7-Feb-07 20:17
Cedric Moonen7-Feb-07 20:17 
GeneralRe: Win 32 console application Pin
Gary R. Wheeler8-Feb-07 4:11
Gary R. Wheeler8-Feb-07 4:11 
GeneralRe: Win 32 console application Pin
Cedric Moonen8-Feb-07 4:14
Cedric Moonen8-Feb-07 4:14 
QuestionTo get filename as input Pin
siddharthsan7-Feb-07 19:39
siddharthsan7-Feb-07 19:39 
AnswerRe: To get filename as input Pin
Waldermort7-Feb-07 19:44
Waldermort7-Feb-07 19:44 
AnswerRe: To get filename as input Pin
Hamid_RT7-Feb-07 20:07
Hamid_RT7-Feb-07 20:07 

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.