D
David Corticchiato
Hi
I have a class witch inherit from another. I want that the child's
constructor call the upper constructor before start his (sorry for my
bad english).
in C++ it would be :
MyClass::MyClass(options) : upperClass(options){
}
I don't find how to write it in Ruby.
I have a class witch inherit from another. I want that the child's
constructor call the upper constructor before start his (sorry for my
bad english).
in C++ it would be :
MyClass::MyClass(options) : upperClass(options){
}
I don't find how to write it in Ruby.