Page 1 of 1
how do i make a class stand in as one of its members?
Posted: Mon Jul 28, 2014 6:17 pm
by lumirion
How can I make a class instance that redirects to one of its member values like int does? I want to be able to use a class instance m instead of m.myValue.
Re: how do i make a class stand in as one of its members?
Posted: Mon Jul 28, 2014 8:25 pm
by CuteAlien
You have to overload the typecast operators of your class for what I think you want to do.
Re: how do i make a class stand in as one of its members?
Posted: Thu Jul 31, 2014 4:41 pm
by lumirion
SWEET! Thank you this looks promising
