r7061: initial property settings
[hyperobject.git] / base-class.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          base-class.lisp
6 ;;;; Purpose:       Definition of basic hyperobject class
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2000
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file is Copyright (c) 2000-2003 by Kevin M. Rosenberg
13 ;;;; *************************************************************************
14
15 (in-package #:hyperobject)
16
17
18 (defclass hyperobject ()
19   ()
20   (:metaclass hyperobject-class)
21   (:description "Basic hyperobject class"))
22
23 (defmethod print-object ((obj hyperobject) (s stream))
24   (print-unreadable-object (obj s :type t :identity nil)
25     (funcall (obj-data-printer (get-view-id obj :compact-text))
26              obj s nil)))
27