> Example (C++):
> class Father
> {
>   virtual void m();
> }
> 
> class Child
> {
>    void m();
>    void aM() {Father::m();}
> }
> 
> This forces the call to the method "m" of the Father class, rather
> than using Child's. Is this possible in Ruby; if yes, how ? If
> no...why ? :-(
> 
> TIA,

If you are saying that aM() forces a call to the parent's m() and of 
course you have inherited from Father, then yes.

def aM
  super.m
end
-- 
Posted via http://www.ruby-forum.com/.