This is the mail archive of the kawa@sources.redhat.com mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Package for define-simple-class


Chris Dean wrote:
Is there a way to specify what package a class created by
define-simple-class is in?  I find myself writing a single .scm file
with multiple classes in it.  For example, say we have a file named
happy/utils/Foo.scm with two classes in it:

    (define-simple-class <Bar> ()
      ((my-name) 'Bar)
      ((square x)
       (* x x)))

    (define-simple-class <Spam> ()
      ((my-name) 'Spamtastic)
      ((cube x)
       (* x x x)))

What I want is two classes created in the happy/utils directory within
the package "happy.utils".

Either: (1) add: (module-name "happy.utils.Foo") or: (2) Specify -P happy.utils. on the Kawa command line. -- --Per Bothner per at bothner dot com http://www.bothner.com/per/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]