c++ wrapper and inherance
-
Here's the problem I'm facing: I have a hierarchy of classes:
class button;
class bitmap_button : public button;
class text_button : public button;Now I want to wrap this is managed c++. How should I do this ? Jonathan de Halleux.
-
Here's the problem I'm facing: I have a hierarchy of classes:
class button;
class bitmap_button : public button;
class text_button : public button;Now I want to wrap this is managed c++. How should I do this ? Jonathan de Halleux.
Probably something like:
class __gc managed_button {button* bt_;...};
class __gc managed_bmp_button : public managed_button {bitmap_button* bmpBt_;...}; -
Here's the problem I'm facing: I have a hierarchy of classes:
class button;
class bitmap_button : public button;
class text_button : public button;Now I want to wrap this is managed c++. How should I do this ? Jonathan de Halleux.