Click here to Skip to main content
15,891,657 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
GeneralRe: auto_ptr Pin
vibindia8-Jun-07 0:09
vibindia8-Jun-07 0:09 
QuestionRegisterHotKey Ctrl+Alt+F1 Pin
Andy H7-Jun-07 23:19
Andy H7-Jun-07 23:19 
AnswerRe: RegisterHotKey Ctrl+Alt+F1 Pin
Nibu babu thomas7-Jun-07 23:33
Nibu babu thomas7-Jun-07 23:33 
GeneralRe: RegisterHotKey Ctrl+Alt+F1 Pin
Andy H8-Jun-07 0:36
Andy H8-Jun-07 0:36 
GeneralRe: RegisterHotKey Ctrl+Alt+F1 Pin
Andy H8-Jun-07 1:22
Andy H8-Jun-07 1:22 
GeneralRe: RegisterHotKey Ctrl+Alt+F1 Pin
Nibu babu thomas8-Jun-07 2:51
Nibu babu thomas8-Jun-07 2:51 
GeneralRe: RegisterHotKey Ctrl+Alt+F1 Pin
Andy H8-Jun-07 4:15
Andy H8-Jun-07 4:15 
AnswerRe: Unicode prob? Pin
Nibu babu thomas7-Jun-07 23:11
Nibu babu thomas7-Jun-07 23:11 
GeneralRe: Unicode prob? Pin
Software_Specialist7-Jun-07 23:15
Software_Specialist7-Jun-07 23:15 
GeneralLil More problem....? Pin
Software_Specialist7-Jun-07 23:54
Software_Specialist7-Jun-07 23:54 
GeneralRe: Lil More problem....? Pin
Nibu babu thomas7-Jun-07 23:57
Nibu babu thomas7-Jun-07 23:57 
GeneralRe: Lil More problem....? Pin
Software_Specialist8-Jun-07 0:05
Software_Specialist8-Jun-07 0:05 
AnswerRe: Unicode prob? Pin
David Crow8-Jun-07 3:10
David Crow8-Jun-07 3:10 
AnswerRe: Unicode prob? Pin
Mark Salsbery8-Jun-07 7:20
Mark Salsbery8-Jun-07 7:20 

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.