I have this class
class A
{
public:
static image* Table;
}
So i cant initialize A::Table
in class and i can't do it in file with my library. Is there are ways to initiate it without asking a user " Please before start work write "A::Table=nullptr
" " ???
And how to do A::Table
in private section of class then?
I saw similar topics and did not find an answer