View Single Post
  #7 (permalink)  
Old 09-02-2008, 11:46 AM
willemjav willemjav is offline
Senior Member
 
Join Date: Dec 2007
Location: Spain
Posts: 342
willemjav is on a distinguished road
In case you haven't followed other similar threaeds
the code and text of nick:

class A {
B b;
A(B bee){
b = bee;

Class A now can do and call methods of a class B on the name "b" thus:

b.doSomething(data);

In the class that has the button pushing stuff, we have a remarkably simple adjunct but that requires you grasp this first,.... then we still have to drive the controller class in a non-blocked manner using the clock I described in the don't ask me to which you refer.
Reply With Quote