G
Guest
Hello
I have struct, and class that handle array of previous mentioned structs.
How to declare struct member, that will point to class that it belongs?
struct S
{
//HOW TO ADD MEMBER THAT WILL POINT TO CLASS C ???
}
class C
{
S** items;
}
Thanks
Milan
I have struct, and class that handle array of previous mentioned structs.
How to declare struct member, that will point to class that it belongs?
struct S
{
//HOW TO ADD MEMBER THAT WILL POINT TO CLASS C ???
}
class C
{
S** items;
}
Thanks
Milan