class A {
public B objB; //B is my own class
main() {
objB = new B();
C objC = new C();
...
}
class B {
B() {}
public void aFunt() {..}
...
}
class C {
C() {
objB.aFunt();
}
}
basically im in class C, and i need to call functions in class B, which
was origionally instantionated in class A.
Does this make any sense? im trying to access/manip an object in
class A, from class C, so that when class C unloads, all the tweaking
its done to the object stays permant. (the object just happens to be
of type B) is this even possible?
Cheers,
Adam.