G
Guest
H
I cant figure out how to do something. Here is waht my code look like
Class B //bas
void function1()
while(...)
}
}
Class A : public B //inherits from class
int myVar
I would like to be able to change the value of myVar each loop in the base Class
How can I do that using pointer? (Even if i have to create additional functions
Thanks in advance for your help.
I cant figure out how to do something. Here is waht my code look like
Class B //bas
void function1()
while(...)
}
}
Class A : public B //inherits from class
int myVar
I would like to be able to change the value of myVar each loop in the base Class
How can I do that using pointer? (Even if i have to create additional functions
Thanks in advance for your help.