Fix regression in --get-image
[phoros.git] / package.lisp
blobd0d5d6bdf0a7faa9b2ebcbb0b6ff59e7223dd8b2
1 ;;; PHOROS -- Photogrammetric Road Survey
2 ;;; Copyright (C) 2010, 2011, 2012 Bert Burgemeister
3 ;;;
4 ;;; This program is free software; you can redistribute it and/or modify
5 ;;; it under the terms of the GNU General Public License as published by
6 ;;; the Free Software Foundation; either version 2 of the License, or
7 ;;; (at your option) any later version.
8 ;;;
9 ;;; This program is distributed in the hope that it will be useful,
10 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ;;; GNU General Public License for more details.
13 ;;;
14 ;;; You should have received a copy of the GNU General Public License along
15 ;;; with this program; if not, write to the Free Software Foundation, Inc.,
16 ;;; 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 (defpackage :phoros-photogrammetry
20 (:documentation "Interface to the PhoML library.")
21 (:use :cl
22 :phoml)
23 (:export :photogrammetry
24 :*photogrammetry-mutex*
25 :del-all))
27 (defpackage :phoros
28 (:use :cl
29 :phoros-photogrammetry
30 :parenscript
31 :postmodern))
33 (defpackage :phoros-command-line-interface
34 (:documentation "The part of Phoros that provides its UNIX command
35 line interface.")
36 (:nicknames :cli)
37 (:use :cl)
38 (:import-from :com.dvlsoft.clon
39 :defsynopsis
40 :make-stropt
41 :make-path
42 :make-lispobj
43 :make-switch
44 :make-context
45 :with-context
46 :cmdline
47 :getopt
48 :do-cmdline-options
49 :help)
50 (:export ;; re-export from com.dvlsoft.clon
51 :defsynopsis
52 :make-stropt
53 :make-path
54 :make-lispobj
55 :make-switch
56 :make-context
57 :with-context
58 :cmdline
59 :getopt
60 :do-cmdline-options
61 :help
62 ;; Phoros stuff
63 :set-.phoros-options
64 :getopt-mandatory
65 :with-options
66 :first-action-option
67 :string-or-null
68 :help-action
69 :version-action
70 :licence-action
71 :license-action
72 :main
73 :check-db-action
74 :check-dependencies-action
75 :nuke-all-tables-action
76 :create-sys-tables-action
77 :create-acquisition-project-action
78 :delete-acquisition-project-action
79 :delete-measurement-action
80 :list-acquisition-project-action
81 :store-images-and-points-action
82 :insert-footprints-action
83 :canonicalize-bayer-pattern
84 :canonicalize-color-raiser
85 :store-camera-hardware-action
86 :store-lens-action
87 :store-generic-device-action
88 :store-device-stage-of-life-action
89 :store-device-stage-of-life-end-action
90 :store-camera-calibration-action
91 :get-image-action
92 :create-presentation-project-action
93 :delete-presentation-project-action
94 :add-to-presentation-project-action
95 :create-image-attribute-action
96 :delete-image-attribute-action
97 :list-image-attribute-action
98 :remove-from-presentation-project-action
99 :redefine-trigger-function-action
100 :create-aux-view-action
101 :store-user-points-action
102 :get-user-points-action
103 :create-user-action
104 :delete-user-action
105 :list-user-action
106 :list-presentation-project-action
107 :format-table
108 :split-last-row
109 :server-action
110 :verbosity-level
111 :set-umask))