annotate implementations/gsharp/classes.lisp @ 279:c591a5034da6
New base module for general database functions
Ignore-this: 403f22ca6285cba4a23eeddb1d0a806f
Currently just provides a slightly more secure way of connecting to a database.
darcs-hash:20090519135617-16a00-ce026a38abfb53e5728cd0cbb6c976e403691dde.gz
author |
j.forth <j.forth@gold.ac.uk> |
date |
Tue, 19 May 2009 14:56:17 +0100 |
parents |
4a0e15e2829a |
children |
22ac5ec1733c |
rev |
line source |
csr21@59
|
1 (cl:in-package "AMUSE-GSHARP")
|
csr21@59
|
2
|
d@168
|
3 (defclass gsharp-object ()())
|
d@168
|
4
|
d@168
|
5 (defclass gsharp-composition (amuse:standard-composition gsharp-object)
|
csr21@59
|
6 ((buffer :initarg :buffer :reader buffer)
|
csr21@59
|
7 (tempi :initarg :tempi :reader tempi)))
|
csr21@59
|
8
|
d@168
|
9 (defclass gsharp-pitched-event (standard-chromatic-pitched-event gsharp-object)
|
c@61
|
10 ((note :initarg :note :reader note)
|
c@61
|
11 (slice-index :initarg :slice-index)))
|
d@162
|
12
|
d@169
|
13 (defclass gsharp-identifier (composition-identifier gsharp-object)
|
d@162
|
14 ((pathname :initarg :path
|
d@162
|
15 :reader %gsharp-identifier-pathname
|
d@162
|
16 :initform 'nil))
|
d@162
|
17 (:documentation "Identifier for files that can be read in GSharp,
|
d@162
|
18 containing pathname information"))
|
d@162
|
19
|
d@162
|
20 (defclass gsharp-gsh-identifier (gsharp-identifier)
|
d@162
|
21 ()
|
d@162
|
22 (:documentation "Identifier for .gsh files for gsharp"))
|
d@162
|
23
|
d@162
|
24 (defclass gsharp-mxml-identifier (gsharp-identifier)
|
d@162
|
25 ()
|
d@162
|
26 (:documentation "Identifier for MusicXML files for gsharp"))
|
d@162
|
27
|