06-14-2006, 12:23 PM
Ok so for short that functionality is replaced by using private data in classes when the class is declared thread variable?
hmm ok...
Like MainClass.FuncA(arg).FuncA1() syntax...
But i now remember you told me QM does not support that syntax...uhmmm.
Other explanation and usage would be private functions tobe used by public member functions of main class.
Like: MainClass.FuncA(arg), and then have FuncA() access FuncA1() which is not accessible useing MainClass.FuncA1().
Where FuncA() passes data to FuncA1(&arg), here &arg is adress of private data not accesible outside main class.
&arg could be adress of an element of an array which is a member of a private structure in main class.
(Hope this last line, explaining arg, is self explaning)
understand now? :lol: :wink:
hmm ok...
Gintaras Wrote:Uhmm lets see how to explain that... :lol:Quote:And i intend to have member functions for member functions of the main class if at all possible...:?:hock:
Like MainClass.FuncA(arg).FuncA1() syntax...
But i now remember you told me QM does not support that syntax...uhmmm.
Other explanation and usage would be private functions tobe used by public member functions of main class.
Like: MainClass.FuncA(arg), and then have FuncA() access FuncA1() which is not accessible useing MainClass.FuncA1().
Where FuncA() passes data to FuncA1(&arg), here &arg is adress of private data not accesible outside main class.
&arg could be adress of an element of an array which is a member of a private structure in main class.
(Hope this last line, explaining arg, is self explaning)
understand now? :lol: :wink:
Well thats all for now, 3M