Click here to Skip to main content
15,897,371 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Darken Windows Desktop and draw normal brightness moveable rectangle Pin
Neville Franks19-Oct-09 23:48
Neville Franks19-Oct-09 23:48 
AnswerRe: Darken Windows Desktop and draw normal brightness moveable rectangle Pin
Naveen19-Oct-09 18:20
Naveen19-Oct-09 18:20 
GeneralRe: Darken Windows Desktop and draw normal brightness moveable rectangle Pin
Neville Franks19-Oct-09 23:50
Neville Franks19-Oct-09 23:50 
AnswerRe: Darken Windows Desktop and draw normal brightness moveable rectangle Pin
Iain Clarke, Warrior Programmer19-Oct-09 23:05
Iain Clarke, Warrior Programmer19-Oct-09 23:05 
GeneralRe: Darken Windows Desktop and draw normal brightness moveable rectangle Pin
Neville Franks19-Oct-09 23:51
Neville Franks19-Oct-09 23:51 
QuestionSetWindowsHookEx to modify GetSaveFileName Pin
Patcher3219-Oct-09 9:49
Patcher3219-Oct-09 9:49 
AnswerRe: SetWindowsHookEx to modify GetSaveFileName Pin
Richard MacCutchan19-Oct-09 12:00
mveRichard MacCutchan19-Oct-09 12:00 
Questionerror C2955: use of class template requires template argument list in C++/MFC [modified] Pin
mfc doubt19-Oct-09 8:58
mfc doubt19-Oct-09 8:58 
I have following header file defines

test2.h ----------> header file

template<class T>
class temp2
{
public:
temp2();
virtual ~temp2();
};



test1.h ----------> header file

template<class T>
class temp1
{
public:
temp1(temp2<T> (temp2<T> *temp2ptr);
~temp1(temp2<T> ();

protected:
temp2<T> *tempptr;

};


test3.h -------------> header file
class test3
{
public:
test3();
virtual ~test3();

};


template<class T> temp1<T>::temp1(temp2<T> *temp2ptr)
{
tempptr = temp2ptr;
}



main.h ----------> header file

temp1 *maintemp1;
temp2<test3> maintemp2;

and in main.cpp -------> source file I am creating an object for this like given below

maintemp1 = new temp1(&maintemp2);

Now when I compile I am getting error

error C2955: 'temp1' : use of class template requires template argument list

can any body tell me what is the wrong with my code block ..

modified on Monday, October 19, 2009 4:13 PM

AnswerRe: error C2955: use of class template requires template argument list in C++/MFC Pin
CPallini19-Oct-09 11:12
mveCPallini19-Oct-09 11:12 
AnswerRe: error C2955: use of class template requires template argument list in C++/MFC Pin
Stuart Dootson19-Oct-09 12:58
professionalStuart Dootson19-Oct-09 12:58 
QuestionSetWindowsHookEx under Windows Service Pin
FotisSs19-Oct-09 8:02
FotisSs19-Oct-09 8:02 
AnswerRe: SetWindowsHookEx under Windows Service Pin
«_Superman_»19-Oct-09 8:29
professional«_Superman_»19-Oct-09 8:29 
GeneralRe: SetWindowsHookEx under Windows Service Pin
IvanProg3-Apr-10 4:11
IvanProg3-Apr-10 4:11 
AnswerRe: SetWindowsHookEx under Windows Service Pin
mirushaki27-Jul-15 1:26
mirushaki27-Jul-15 1:26 
QuestionhWnd passed into another class Pin
Nicola Curran19-Oct-09 5:44
Nicola Curran19-Oct-09 5:44 
AnswerRe: hWnd passed into another class Pin
Chris Losinger19-Oct-09 6:29
professionalChris Losinger19-Oct-09 6:29 
AnswerRe: hWnd passed into another class Pin
Cedric Moonen19-Oct-09 7:17
Cedric Moonen19-Oct-09 7:17 
AnswerRe: hWnd passed into another class Pin
theCPkid19-Oct-09 19:04
theCPkid19-Oct-09 19:04 
GeneralRe: hWnd passed into another class Pin
Nicola Curran19-Oct-09 21:36
Nicola Curran19-Oct-09 21:36 
QuestionRegarding the Record Position. Pin
janaswamy uday19-Oct-09 4:20
janaswamy uday19-Oct-09 4:20 
QuestionRe: Regarding the Record Position. Pin
David Crow19-Oct-09 4:52
David Crow19-Oct-09 4:52 
AnswerRe: Regarding the Record Position. Pin
Rajesh R Subramanian19-Oct-09 5:45
professionalRajesh R Subramanian19-Oct-09 5:45 
GeneralRe: Regarding the Record Position. Pin
janaswamy uday19-Oct-09 5:56
janaswamy uday19-Oct-09 5:56 
GeneralRe: Regarding the Record Position. Pin
Rajesh R Subramanian19-Oct-09 6:16
professionalRajesh R Subramanian19-Oct-09 6:16 
QuestionHow we show a message box & get user input in Win32 Dynamic-Link Library Pin
THAQCD19-Oct-09 4:19
THAQCD19-Oct-09 4:19 

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.