annotate utils/harmony/methods.lisp @ 40:5bec705db9d6

Move midi-key-signature from implementations/midi to base/ darcs-hash:20070606134940-aa3d6-69b8a531ef8ae393234d065ff6105ed9ecd18434.gz
author m.pearce <m.pearce@gold.ac.uk>
date Wed, 06 Jun 2007 14:49:40 +0100
parents d1010755f507
children
rev   line source
d@33 1 (in-package #:amuse-harmony)
d@33 2
d@33 3 (defgeneric get-ground-truth-periods (anchored-period composition)
d@33 4 (:method (ap c) (declare (ignore ap c)) nil))
d@33 5
d@33 6 (defgeneric get-ground-truth-chord (ground-truth-period composition)
d@33 7 (:method (gtp c) (declare (ignore gtp c)) nil))
d@33 8