Příklad

struct MyStruct {
public:
void function(){}
int member;
 

};

Řešení
Učiňte ze struktury třídu.

class MyStruct {
public:
void function(){}
int member;
 

};