Click here to Skip to main content
15,919,500 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: DEBUG mode ERROR Pin
vivekphlp8-Jun-07 3:23
vivekphlp8-Jun-07 3:23 
QuestionRe: DEBUG mode ERROR Pin
David Crow8-Jun-07 3:24
David Crow8-Jun-07 3:24 
AnswerRe: DEBUG mode ERROR Pin
vivekphlp8-Jun-07 3:26
vivekphlp8-Jun-07 3:26 
Questionfailed to install vc6.0 Pin
aren3728-Jun-07 0:32
aren3728-Jun-07 0:32 
AnswerRe: failed to install vc6.0 Pin
David Crow8-Jun-07 2:54
David Crow8-Jun-07 2:54 
GeneralRe: failed to install vc6.0 Pin
aren37211-Jun-07 21:57
aren37211-Jun-07 21:57 
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 
I think u should modify the code as following:
<br />
1:  // a.h<br />
2:  struct TS<br />
3:  {<br />
4:    int i ;<br />
5:  } ;<br />
6:  template < class T ><br />
7:  class TTEST<br />
8:  {<br />
9:  public:<br />
10:   TS t;<br />
11: public:<br />
12:   TS* test1() ;<br />
13:  } ;<br />
14: // a.cpp<br />
15: #include "a.h"<br />
16: template < class T ><br />
17: TS* TTEST < T >::test1()<br />
18: {<br />
19:   return NULL;<br />
20: }<br />

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 

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.