[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Laurent Vibert <lvibert@i...> |
| Subject: | Re: [Caml-list] Recovering masked methods |
On Tue, 16 Jul 2002, Alessandro Baretta wrote:
> class a =
> object
> ...
> end
>
> class b =
> object
> inherit a
> ...
> end
>
> class c =
> object
> inherit a as super_a through b as super_b { through
> <class> as <identifier> }*
> ...
> end
>
isn't multiple inheritance enougth for this ?
class c =
object
inherit a as super_a
inherit b as super_b
method m = super_a # m
(* other method are left unchanged *)
end
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners