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;
}; |