Click here to Skip to main content
15,896,063 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
AnswerRe: Basic doubt with Class template Pin
Albert Holguin6-Jul-11 4:06
professionalAlbert Holguin6-Jul-11 4:06 
GeneralRe: Basic doubt with Class template Pin
hrishi3216-Jul-11 17:17
hrishi3216-Jul-11 17:17 
GeneralRe: Basic doubt with Class template Pin
Richard MacCutchan6-Jul-11 21:59
mveRichard MacCutchan6-Jul-11 21:59 
GeneralRe: Basic doubt with Class template Pin
hrishi3217-Jul-11 0:08
hrishi3217-Jul-11 0:08 
GeneralRe: Basic doubt with Class template Pin
Richard MacCutchan7-Jul-11 1:33
mveRichard MacCutchan7-Jul-11 1:33 
GeneralRe: Basic doubt with Class template [modified] Pin
hrishi3217-Jul-11 16:28
hrishi3217-Jul-11 16:28 
GeneralRe: Basic doubt with Class template Pin
Richard MacCutchan7-Jul-11 22:54
mveRichard MacCutchan7-Jul-11 22:54 
GeneralRe: Basic doubt with Class template Pin
hrishi3217-Jul-11 23:18
hrishi3217-Jul-11 23:18 
I think there is a misunderstanding. Sorry if my words were not able to explain my doubt.

If you please refer to my main-doubt
Could anyone please tell me, is there any way to separate the definition of the methods of a template class ,from header file to .cpp file.


The code which you have provided works absolutely fine, in just one file.
Just that I wanted to know, if there is any way to separate the definitions of the method in an another .cpp file. (Just like a normal class where we declare in .h and implement in .cpp)

template <class T>
void CMyTemplate<T>::Method1(T& TDummy)
{
	TDummy = TDummy + 1;
}




and the declaration in an separet .h file

template <class T> 
class CMyTemplate
{
public:
	virtual void Method1(T& TDummy);
};



thanks in advance
hrishi
GeneralRe: Basic doubt with Class template Pin
Richard MacCutchan8-Jul-11 0:31
mveRichard MacCutchan8-Jul-11 0:31 
AnswerRe: Basic doubt with Class template Pin
Orjan Westin5-Aug-11 8:49
professionalOrjan Westin5-Aug-11 8:49 
AnswerRe: Basic doubt with Class template Pin
Paul M Watt10-Jul-11 16:09
mentorPaul M Watt10-Jul-11 16:09 
GeneralRe: Basic doubt with Class template Pin
hrishi32110-Jul-11 16:59
hrishi32110-Jul-11 16:59 
AnswerRe: Basic doubt with Class template Pin
Bram van Kampen19-Aug-11 14:54
Bram van Kampen19-Aug-11 14:54 
Questionbackgroud worker thread crashes but fine when foreground Pin
VeganFanatic26-Jun-11 4:44
VeganFanatic26-Jun-11 4:44 
AnswerRe: backgroud worker thread crashes but fine when foreground Pin
Richard MacCutchan26-Jun-11 5:18
mveRichard MacCutchan26-Jun-11 5:18 
GeneralRe: backgroud worker thread crashes but fine when foreground Pin
VeganFanatic26-Jun-11 5:19
VeganFanatic26-Jun-11 5:19 
GeneralRe: backgroud worker thread crashes but fine when foreground Pin
Richard MacCutchan26-Jun-11 5:44
mveRichard MacCutchan26-Jun-11 5:44 
GeneralRe: backgroud worker thread crashes but fine when foreground Pin
VeganFanatic26-Jun-11 5:46
VeganFanatic26-Jun-11 5:46 
GeneralRe: backgroud worker thread crashes but fine when foreground Pin
Richard MacCutchan26-Jun-11 5:57
mveRichard MacCutchan26-Jun-11 5:57 
GeneralRe: backgroud worker thread crashes but fine when foreground Pin
VeganFanatic26-Jun-11 5:58
VeganFanatic26-Jun-11 5:58 
GeneralRe: backgroud worker thread crashes but fine when foreground Pin
Richard MacCutchan26-Jun-11 6:06
mveRichard MacCutchan26-Jun-11 6:06 
GeneralRe: backgroud worker thread crashes but fine when foreground Pin
VeganFanatic26-Jun-11 6:08
VeganFanatic26-Jun-11 6:08 
AnswerRe: backgroud worker thread crashes but fine when foreground Pin
Albert Holguin5-Jul-11 9:52
professionalAlbert Holguin5-Jul-11 9:52 
AnswerRe: backgroud worker thread crashes but fine when foreground Pin
Paul M Watt10-Jul-11 16:24
mentorPaul M Watt10-Jul-11 16:24 
QuestionMigration from MFC to STL Pin
hrishi32122-Jun-11 20:28
hrishi32122-Jun-11 20:28 

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.