I have a class that contains a std::map variable. I need to export the
class via a DLL. the class looks something like this:
class MyClass
{
public:
MyClass();
MyClass(const MyClass&);
private:
MyClass& operator=(const MyClass&);
typedef std::map<SomeKe y, SomethingElseTr easureChest ;
TreasureChest m_treasures;
};
class via a DLL. the class looks something like this:
class MyClass
{
public:
MyClass();
MyClass(const MyClass&);
private:
MyClass& operator=(const MyClass&);
typedef std::map<SomeKe y, SomethingElseTr easureChest ;
TreasureChest m_treasures;
};
Comment