Click here to Skip to main content
15,904,415 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
GeneralRe: COM Apartment Pin
KRISHNARAYALU16-Jun-13 21:10
KRISHNARAYALU16-Jun-13 21:10 
GeneralRe: COM Apartment Pin
Richard MacCutchan16-Jun-13 21:24
mveRichard MacCutchan16-Jun-13 21:24 
GeneralRe: COM Apartment Pin
KRISHNARAYALU16-Jun-13 21:35
KRISHNARAYALU16-Jun-13 21:35 
AnswerRe: COM Apartment Pin
imagiro4-Jul-13 2:53
imagiro4-Jul-13 2:53 
AnswerRe: COM Apartment Pin
Krishnakumartg13-Aug-13 6:53
Krishnakumartg13-Aug-13 6:53 
Questionhow to export an enum type in an ATL prject Pin
astupidboy12-Jun-13 21:58
astupidboy12-Jun-13 21:58 
AnswerRe: how to export an enum type in an ATL prject Pin
Jonathan Davies15-Jun-13 4:10
Jonathan Davies15-Jun-13 4:10 
QuestionHere is a C Program showing some Error, Give some solution Pin
Member 969295410-Jun-13 4:03
Member 969295410-Jun-13 4:03 
AnswerRe: Here is a C Program showing some Error, Give some solution Pin
Richard MacCutchan10-Jun-13 6:03
mveRichard MacCutchan10-Jun-13 6:03 
AnswerRe: Here is a C Program showing some Error, Give some solution Pin
Krishnakumartg13-Aug-13 7:05
Krishnakumartg13-Aug-13 7:05 
Questionstd::map and error checking Pin
bkelly139-Jun-13 10:42
bkelly139-Jun-13 10:42 
AnswerRe: std::map and error checking Pin
Garth J Lancaster9-Jun-13 13:18
professionalGarth J Lancaster9-Jun-13 13:18 
GeneralRe: std::map and error checking Pin
bkelly139-Jun-13 14:16
bkelly139-Jun-13 14:16 
AnswerRe: std::map and error checking Pin
Richard MacCutchan9-Jun-13 21:23
mveRichard MacCutchan9-Jun-13 21:23 
AnswerRe: std::map and error checking Pin
MicroVirus11-Jun-13 12:07
MicroVirus11-Jun-13 12:07 
Questionstatus display in a dialog Pin
bkelly139-Jun-13 5:17
bkelly139-Jun-13 5:17 
AnswerRe: status display in a dialog Pin
Garth J Lancaster9-Jun-13 14:53
professionalGarth J Lancaster9-Jun-13 14:53 
Questionstd::map, fundamental get started problem RESOLVED Pin
bkelly139-Jun-13 4:04
bkelly139-Jun-13 4:04 
Windows 7, Visual Studio 2008, MFC, CPP, std::map
I am trying to get an std::map working. I have tried several permutations and patterned it after some tutorials found with a search. Still I am unable to get it right and to decipher the error message.
Please assist with this problem.
The setup
XML
typedef struct
{
   unsigned int   identifier_location;
   unsigned int   count_found;
   CString        key;
   CString        token[ MAX_TOKEN_COUNT ];
}     td_tmats_attributes_definitions;

td_tmats_attributes_definitions    m_one_definition_record;

std::map < CString, td_tmats_attributes_definitions > m_tmats_definition_map;
//          ^ the key    ^the data to store
// below is an alternate declaration.
std::map < string, td_tmats_attributes_definitions > m_tmats_definition_map_string;


And now the code

CString  the_key;
…
The code:
// The primary insertion code
 m_tmats_definition_map.insert( the_key, m_one_definition_record );
// the alternate
string str_key = the_key;
//            m_tmats_definition_map_string.insert( the_key, m_one_definition_record );


Neither of the two options will compile.

I was prepared to post the error message, but I have a strong suspicion that reader will know my error with little effort and the long text from VS output box will only clutter things up. Let me know if you want to see the error text.

Please tell me what I need to change.
Thanks for your time
If you work with telemetry, please check this bulletin board: http://www.bkelly.ws/irig_106/


modified 9-Jun-13 12:44pm.

AnswerRe: std::map, fundamental get started problem Pin
pasztorpisti9-Jun-13 4:19
pasztorpisti9-Jun-13 4:19 
GeneralRe: std::map, fundamental get started problem RESOLVED Pin
bkelly139-Jun-13 4:46
bkelly139-Jun-13 4:46 
QuestionCFileException, discover reasons RESOLVED Pin
bkelly138-Jun-13 10:05
bkelly138-Jun-13 10:05 
AnswerRe: CFileException, discover reasons Pin
Richard MacCutchan8-Jun-13 21:40
mveRichard MacCutchan8-Jun-13 21:40 
GeneralRe: CFileException, discover reasons RESOLVED Pin
bkelly139-Jun-13 3:54
bkelly139-Jun-13 3:54 
GeneralRe: CFileException, discover reasons Pin
bkelly139-Jun-13 6:11
bkelly139-Jun-13 6:11 
GeneralRe: CFileException, discover reasons Pin
Richard MacCutchan9-Jun-13 9:23
mveRichard MacCutchan9-Jun-13 9:23 

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.