Click here to Skip to main content
15,900,816 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: failed to install vc6.0 Pin
David Crow12-Jun-07 2:27
David Crow12-Jun-07 2:27 
AnswerRe: failed to install vc6.0 Pin
aren37212-Jun-07 2:40
aren37212-Jun-07 2:40 
QuestionService Admin Pin
VC_RYK8-Jun-07 0:31
VC_RYK8-Jun-07 0:31 
AnswerRe: Service Admin Pin
Nelek8-Jun-07 3:25
protectorNelek8-Jun-07 3:25 
Questionpointer and message Pin
whiteclouds8-Jun-07 0:08
whiteclouds8-Jun-07 0:08 
AnswerRe: pointer and message Pin
Jijo.Raj8-Jun-07 2:47
Jijo.Raj8-Jun-07 2:47 
GeneralRe: pointer and message Pin
whiteclouds10-Jun-07 14:39
whiteclouds10-Jun-07 14:39 
QuestionRe: pointer and message Pin
Mark Salsbery8-Jun-07 7:09
Mark Salsbery8-Jun-07 7:09 
AnswerRe: pointer and message Pin
whiteclouds10-Jun-07 14:40
whiteclouds10-Jun-07 14:40 
QuestionAnother question on c++ template Pin
Yuwen Zhou8-Jun-07 0:06
Yuwen Zhou8-Jun-07 0:06 
AnswerRe: Another question on c++ template Pin
CPallini8-Jun-07 0:26
mveCPallini8-Jun-07 0:26 
GeneralRe: Another question on c++ template Pin
Yuwen Zhou8-Jun-07 0:30
Yuwen Zhou8-Jun-07 0:30 
GeneralRe: Another question on c++ template Pin
CPallini8-Jun-07 0:36
mveCPallini8-Jun-07 0:36 
GeneralRe: Another question on c++ template Pin
David Crow8-Jun-07 2:59
David Crow8-Jun-07 2:59 
AnswerRe: Another question on c++ template Pin
Christian Graus8-Jun-07 0:27
protectorChristian Graus8-Jun-07 0:27 
AnswerRe: Another question on c++ template Pin
whiteclouds8-Jun-07 0:30
whiteclouds8-Jun-07 0:30 
GeneralRe: Another question on c++ template Pin
Yuwen Zhou8-Jun-07 0:37
Yuwen Zhou8-Jun-07 0:37 
AnswerRe: Another question on c++ template Pin
Matthew Faithfull8-Jun-07 0:36
Matthew Faithfull8-Jun-07 0:36 
GeneralRe: Another question on c++ template Pin
Yuwen Zhou8-Jun-07 0:49
Yuwen Zhou8-Jun-07 0:49 
JokeRe: Another question on c++ template Pin
CPallini8-Jun-07 2:09
mveCPallini8-Jun-07 2:09 
GeneralRe: Another question on c++ template Pin
Yuwen Zhou8-Jun-07 5:10
Yuwen Zhou8-Jun-07 5:10 
Questionauto_ptr Pin
vibindia7-Jun-07 23:42
vibindia7-Jun-07 23:42 
Hi
#include<memory.h>
#include<iostream.h>
class CStack
{
public:
void push()
{
cout<<"push";
}
};

int main()
{
auto_ptr<CStack> pt( new CStack );
return 0;
}

For this code I'm getting error

: error C2065: 'auto_ptr' : undeclared identifier

what header file should i include for auto_ptr.

VIBIN

"Fool's run away,where angle's fear to tread"
AnswerRe: auto_ptr Pin
CPallini7-Jun-07 23:52
mveCPallini7-Jun-07 23:52 
GeneralRe: auto_ptr Pin
vibindia8-Jun-07 0:00
vibindia8-Jun-07 0:00 
GeneralRe: auto_ptr Pin
CPallini8-Jun-07 0:05
mveCPallini8-Jun-07 0:05 

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.