HighTechTalks DotNet Forums  

returning a std::list & std::map with __gc class method. What's wr

Dotnet Academic General Discussions microsoft.public.dotnet.academic


Discuss returning a std::list & std::map with __gc class method. What's wr in the Dotnet Academic General Discussions forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
Hidarisei
 
Posts: n/a

Default returning a std::list & std::map with __gc class method. What's wr - 06-12-2005 , 10:42 AM






I'm converting my application from Borland C++ Builder 6 Ent to VS.NET 2003
Pro.

My class looks like this (shortened)

#using <mscorlib.dll>

using namespace System;
using namespace System::IO;

__gc class CLocale
{
public:
CLocale();
~CLocale();

int LoadLocaleMap(const int in_iLang);
std::map<int, String*> GetLocaleMap(); // Error here can't return
std::map ???
private:
int m_iLang;
std::map<int, String*> m_mLoc;
};

Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.