class in class
Nov 25, 2009 at 10:40pm
I wrote a class named x in an other class' public named y. And i want to use something like that in main;
x data
But i can't solve how can i do that.
Nov 25, 2009 at 10:42pm
use y::x outside y
- x has to be public -
Nov 25, 2009 at 10:56pm
yeap i solved with writing;
y::x data;
in main
Topic archived. No new replies allowed.