1 /*
2  * @(#)listen/MidiFile.h 3.00 30 June 1999
3  *
4  * Copyright (c) 2000 Pete Goodliffe (pete@cthree.org)
5  *
6  * This file is part of TSE3 - the Trax Sequencer Engine version 3.00.
7  *
8  * This library is modifiable/redistributable under the terms of the GNU
9  * General Public License.
10  *
11  * You should have received a copy of the GNU General Public License along
12  * with this program; see the file COPYING. If not, write to the Free Software
13  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
14  *
15  */
16 
17 #ifndef TSE3_LISTEN_MIDIFILE_H
18 #define TSE3_LISTEN_MIDIFILE_H
19 
20 namespace TSE3
21 {
22     class MidiFileImport;
23 
24     /**
25      * @ref MidiFileImport listener interface.
26      *
27      * @author  Pete Goodliffe
28      * @version 3.00
29      * @see     Listener
30      */
31     class MidiFileImportListener
32     {
33         public:
34             typedef MidiFileImport notifier_type;
35     };
36 }
37 
38 #endif
39