# HG changeset patch # User m.pearce # Date 1161793384 -3600 # Node ID e854a73b0328c537cc8f87db6b9075d974969bc3 # Parent 8fbbb0f14f3cf584c88c42f152eb895931a3978e Add package definition and in-package forms. darcs-hash:20061025162304-aa3d6-85ddf506c4c08f698cd7057917770c0ce2ce4bf3.gz diff -r 8fbbb0f14f3c -r e854a73b0328 classes.lisp --- a/classes.lisp Mon Oct 16 17:07:36 2006 +0100 +++ b/classes.lisp Wed Oct 25 17:23:04 2006 +0100 @@ -1,3 +1,5 @@ +(cl:in-package #:amuse) + ;; basic musical object classes (defclass composition () diff -r 8fbbb0f14f3c -r e854a73b0328 conditions.lisp --- a/conditions.lisp Mon Oct 16 17:07:36 2006 +0100 +++ b/conditions.lisp Wed Oct 25 17:23:04 2006 +0100 @@ -1,3 +1,5 @@ +(cl:in-package #:amuse) + ;; Some conditions we might want to be able to signal (define-condition undefined-action (condition) diff -r 8fbbb0f14f3c -r e854a73b0328 default-methods.lisp --- a/default-methods.lisp Mon Oct 16 17:07:36 2006 +0100 +++ b/default-methods.lisp Wed Oct 25 17:23:04 2006 +0100 @@ -1,3 +1,5 @@ +(cl:in-package #:amuse) + ;; Some methods that can be defined in terms of others: ;; Time diff -r 8fbbb0f14f3c -r e854a73b0328 generics.lisp --- a/generics.lisp Mon Oct 16 17:07:36 2006 +0100 +++ b/generics.lisp Wed Oct 25 17:23:04 2006 +0100 @@ -3,9 +3,12 @@ ;;;; File: generics.lisp ;;;; Author: Marcus Pearce ;;;; Created: <2006-10-12 15:14:51 marcusp> -;;;; Time-stamp: <2006-10-12 16:57:51 marcusp> +;;;; Time-stamp: <2006-10-25 17:22:38 marcusp> ;;;; ====================================================================== + +(cl:in-package #:amuse) + ;;; Accessors (do we need the get- prefix?) (defgeneric get-pitch (object &key kind)) ; ?