RE: Writing classes in C

Jaap Vermeulen (jaap@sequent.com)
Mon, 18 Oct 93 15:23:00 PDT

| I'd like to write a module in C which defines a class, with at least
| some of its methods executing in C. Is it possible to define classes
| in C where some (or all) of its methods execute C functions?

Just make it a built-in object, such as fileobject. If you need to access it
using a user-defined class, just write a class wrapper around the built-in
object.

-Jaap-