Click here to Skip to main content
16,005,162 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: trouble using dll Pin
gargeug14-Oct-08 7:27
gargeug14-Oct-08 7:27 
QuestionSetup Wizard Question Pin
Rangarajan Varadan13-Oct-08 8:44
Rangarajan Varadan13-Oct-08 8:44 
AnswerRe: Setup Wizard Question Pin
Iain Clarke, Warrior Programmer13-Oct-08 17:44
Iain Clarke, Warrior Programmer13-Oct-08 17:44 
GeneralRe: Setup Wizard Question Pin
Rangarajan Varadan14-Oct-08 16:56
Rangarajan Varadan14-Oct-08 16:56 
Questionmap of lists of pointers Pin
Laan8213-Oct-08 7:05
Laan8213-Oct-08 7:05 
QuestionRe: map of lists of pointers Pin
David Crow13-Oct-08 7:39
David Crow13-Oct-08 7:39 
AnswerRe: map of lists of pointers [modified] Pin
Laan8213-Oct-08 7:57
Laan8213-Oct-08 7:57 
AnswerRe: map of lists of pointers Pin
Jason Hamilton14-Oct-08 5:04
Jason Hamilton14-Oct-08 5:04 
I think that the problem is with the way you are declaring the map on line 1. It should look like:

map
<
  string,
  list<celement*>
> *m_Layer;


You have an extra bracket and the list is not being correctly defined; you have to tell a template object what kind of object it is using at the time of declaration. If you make this change on line 1, 4, and 11 it should work. Just make sure that the <celement> phrase immediately follows the std::list declarator.
Questionhelp: how to integrate third party lib to my MFC Extension DLL. Pin
lyjqhjcplusplus13-Oct-08 4:59
lyjqhjcplusplus13-Oct-08 4:59 
AnswerRe: help: how to integrate third party lib to my MFC Extension DLL. Pin
Roger Stoltz13-Oct-08 5:39
Roger Stoltz13-Oct-08 5:39 
GeneralRe: help: how to integrate third party lib to my MFC Extension DLL. Pin
lyjqhjcplusplus13-Oct-08 5:57
lyjqhjcplusplus13-Oct-08 5:57 
AnswerRe: help: how to integrate third party lib to my MFC Extension DLL. Pin
Roger Stoltz13-Oct-08 6:17
Roger Stoltz13-Oct-08 6:17 
GeneralRe: help: how to integrate third party lib to my MFC Extension DLL. Pin
lyjqhjcplusplus13-Oct-08 6:34
lyjqhjcplusplus13-Oct-08 6:34 
GeneralRe: help: how to integrate third party lib to my MFC Extension DLL. Pin
led mike13-Oct-08 6:53
led mike13-Oct-08 6:53 
GeneralRe: help: how to integrate third party lib to my MFC Extension DLL. Pin
Roger Stoltz13-Oct-08 7:03
Roger Stoltz13-Oct-08 7:03 
GeneralRe: help: how to integrate third party lib to my MFC Extension DLL. Pin
lyjqhjcplusplus13-Oct-08 7:04
lyjqhjcplusplus13-Oct-08 7:04 
GeneralRe: help: how to integrate third party lib to my MFC Extension DLL. Pin
led mike13-Oct-08 7:25
led mike13-Oct-08 7:25 
AnswerRe: help: how to integrate third party lib to my MFC Extension DLL. Pin
Roger Stoltz13-Oct-08 7:02
Roger Stoltz13-Oct-08 7:02 
GeneralRe: help: how to integrate third party lib to my MFC Extension DLL. Pin
lyjqhjcplusplus13-Oct-08 8:13
lyjqhjcplusplus13-Oct-08 8:13 
AnswerRe: help: how to integrate third party lib to my MFC Extension DLL. Pin
Roger Stoltz13-Oct-08 20:42
Roger Stoltz13-Oct-08 20:42 
AnswerRe: help: how to integrate third party lib to my MFC Extension DLL. Pin
led mike13-Oct-08 5:40
led mike13-Oct-08 5:40 
GeneralRe: help: how to integrate third party lib to my MFC Extension DLL. Pin
lyjqhjcplusplus13-Oct-08 5:59
lyjqhjcplusplus13-Oct-08 5:59 
AnswerRe: help: how to integrate third party lib to my MFC Extension DLL. Pin
Hungry Developer13-Oct-08 19:34
Hungry Developer13-Oct-08 19:34 
NewsRe: help: how to integrate third party lib to my MFC Extension DLL. Pin
Roger Stoltz13-Oct-08 20:34
Roger Stoltz13-Oct-08 20:34 
QuestionQuestion about services... Pin
Green Fuze13-Oct-08 4:52
Green Fuze13-Oct-08 4: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.