<HTML><BODY>Is there a way to inherit all fields ?<br><br>For example<br><br>(define a (class object% (super-new) (field f1 f2 f3)))<br><br>(define b (class a (super-new) (field f4 f5 f6)))<br><br>(define c (class b (super-new) (inherit-field f1 f2 f3 f4 f5 f6)))<br><br>How to avoid manual enumeration of all f1 ... f6?<br><br>-- <br>Roman Klochkov</BODY></HTML>