;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (in-package :hu.dwim.projectional-editor) ;;;;;; ;;; SDL specific device classes (def class* device/display/web (device/display) ()) ;;;;;; ;;; SDL specific device constructors (def (function e) make-device/display/web (width height) (make-instance 'device/display/web :width width :height height))