r10454: fix exports
[cl-photo.git] / package.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          package.lisp
6 ;;;; Purpose:       Package file for cl-photo
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  April 2005
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of cl-photo, is Copyright (c) 2005 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; cl-photo users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the GNU General Public License v2
16 ;;;; (http://www.gnu.org/licenses/gpl.html)
17 ;;;;
18 ;;;; *************************************************************************
19
20 (in-package #:cl-user)
21
22 (defpackage #:cl-photo
23   (:use #:common-lisp #:kmrcl)
24   (:nicknames #:photo)
25   (:export
26
27    ;; cameras.lisp
28    #:pixel-dimensions
29    #:imager-dimensions
30    #:output-dimensions
31    #:*digital-cameras*
32    #:*cameras*
33
34    ;; fov.lisp
35    #:aov
36    #:aov-format
37    #:fov
38    #:magnification
39    #:bellows-factor
40    #:image-distance
41
42    ;; dof.lisp
43    #:coc
44    #:coc-format
45    #:coc-pixels
46    #:coc-pixels-format
47    #:coc-airy
48    #:dof
49    #:hyperfocal
50    #:effective-aperture
51
52    ;; tables.lisp
53    #:hyperfocal-table
54    #:aov-table
55    #:fov-table
56    #:dof-table
57    ))
58