Click here to Skip to main content
15,913,106 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
GeneralRe: Icon to Bitmap conversion Pin
Ed Gadziemski4-Jun-03 16:32
professionalEd Gadziemski4-Jun-03 16:32 
GeneralI'm a beginner.... Pin
Jhon29-May-03 15:08
Jhon29-May-03 15:08 
GeneralRe: I'm a beginner.... Pin
Anonymous29-May-03 16:51
Anonymous29-May-03 16:51 
GeneralRe: I'm a beginner.... Pin
geo_m30-May-03 22:20
geo_m30-May-03 22:20 
GeneralRe: I'm a beginner.... Pin
sunjohn1-Jun-03 22:43
sunjohn1-Jun-03 22:43 
GeneralCompilation Error on map Pin
projyal27-May-03 21:16
projyal27-May-03 21:16 
GeneralRe: Compilation Error on map Pin
projyal27-May-03 22:05
projyal27-May-03 22:05 
GeneralRe: Compilation Error on map Pin
Joaquín M López Muñoz28-May-03 2:30
Joaquín M López Muñoz28-May-03 2:30 
The following compiles OK in MSVC++ 6.0sp5:
#pragma warning(disable:4786)
#include <map>
 
template <class T>
class C
{
  protected:
   typedef struct _slot
   {
       T* obj;
       int l; 
   } slot;
  public:
  int func(T* obj,int id);
};
 
using namespace std;
 
template <class T>
int C<T>::func(T* obj,int id)
{
   slot* s = new slot;
   map<int,slot*>::iterator it;
   return 0;
}
 
template class C <char*>;
 
int main()
{
  return 0;
}
So I guess your problem lies elsewhere.

Joaquín M López Muñoz
Telefónica, Investigación y Desarrollo
Generaladd a DIALOGBAR Pin
aguest27-May-03 19:37
aguest27-May-03 19:37 
GeneralWTL: CFrameWindow question Pin
João Paulo Figueira27-May-03 1:28
professionalJoão Paulo Figueira27-May-03 1:28 
QuestionHow to Implement &quot;Drag&quot; in List View without using MFC Pin
Pious26-May-03 22:00
Pious26-May-03 22:00 
AnswerRe: How to Implement &quot;Drag&quot; in List View without using MFC Pin
AlexO27-May-03 6:30
AlexO27-May-03 6:30 
QuestionATL CString in C++ .net/2003 - to export or not? Pin
Peter Weyzen26-May-03 18:45
Peter Weyzen26-May-03 18:45 
AnswerRe: ATL CString in C++ .net/2003 - to export or not? Pin
27-May-03 7:35
suss27-May-03 7:35 
GeneralWTL/STL Pin
bsanoop1726-May-03 7:30
bsanoop1726-May-03 7:30 
GeneralLong Atl Build-times Pin
Hugo Hallman25-May-03 11:07
Hugo Hallman25-May-03 11:07 
Generalerror C2065: 'ImageList_Read' : undeclared identifier Pin
szarea23-May-03 12:33
szarea23-May-03 12:33 
GeneralRe: error C2065: 'ImageList_Read' : undeclared identifier Pin
Tim Smith24-May-03 3:11
Tim Smith24-May-03 3:11 
GeneralVector Iterator Pin
ironhead23-May-03 4:10
ironhead23-May-03 4:10 
GeneralRe: Vector Iterator Pin
Joaquín M López Muñoz23-May-03 4:15
Joaquín M López Muñoz23-May-03 4:15 
GeneralRe: Vector Iterator Pin
ironhead23-May-03 13:40
ironhead23-May-03 13:40 
GeneralList view problem in Explorer like application Pin
Derick Cyril Thomas23-May-03 3:48
Derick Cyril Thomas23-May-03 3:48 
QuestionAbout Implement IDocHostUIHandler Interface funtion ShowContextMenu? Pin
Boyren20-May-03 4:49
Boyren20-May-03 4:49 
GeneralLooking for Good, Concise C++ Tutorials Pin
Kevin McFarlane20-May-03 1:30
Kevin McFarlane20-May-03 1:30 
GeneralRe: Looking for Good, Concise C++ Tutorials Pin
valikac20-May-03 8:52
valikac20-May-03 8:52 

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.