r3287: *** empty log message ***
[hyperobject.git] / package.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          package.lisp
6 ;;;; Purpose:       Package definition for hyperobject package
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2000
9 ;;;;
10 ;;;; $Id: package.lisp,v 1.2 2002/11/03 20:06:19 kevin Exp $
11 ;;;;
12 ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg
13 ;;;; *************************************************************************
14
15 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
16
17 (in-package :cl-user)
18
19 (defpackage #:hyperobject
20   (:use #:common-lisp #:kmrcl)
21   (:export
22    #:ml-class
23    #:ml-class-title
24    #:load-all-subobjects
25    #:print-ho
26    ))
27
28