Is it possible to either
extend an extension of a class e.g.:
class a {
}
class b extends a {
}
class c extends b {
}
EDIT:
[or some other way that class c can use functions only defined in b but not in a.]
Well I just notice that my question was kinda messed up. c should be able to use all functions, so of course those of a aswell.
I'll just accept the answer solving my non-existing problem, in case someone searches for this.