1 /*
2  * libInstPatch
3  * Copyright (C) 1999-2014 Element Green <element@elementsofsound.org>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public License
7  * as published by the Free Software Foundation; version 2.1
8  * of the License only.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18  * 02110-1301, USA or on the web at http://www.gnu.org.
19  */
20 #ifndef __IPATCH_SF2_VOICE_CACHE_GIG_H__
21 #define __IPATCH_SF2_VOICE_CACHE_GIG_H__
22 
23 #include <glib.h>
24 #include <glib-object.h>
25 #include <libinstpatch/IpatchConverter.h>
26 #include <libinstpatch/IpatchConverterSF2VoiceCache.h>
27 
28 typedef IpatchConverterSF2VoiceCache IpatchConverterGigInstToSF2VoiceCache;
29 typedef IpatchConverterSF2VoiceCacheClass IpatchConverterGigInstToSF2VoiceCacheClass;
30 typedef IpatchConverterSF2VoiceCache IpatchConverterGigSampleToSF2VoiceCache;
31 typedef IpatchConverterSF2VoiceCacheClass IpatchConverterGigSampleToSF2VoiceCacheClass;
32 
33 #define IPATCH_TYPE_CONVERTER_GIG_INST_TO_SF2_VOICE_CACHE \
34   (ipatch_converter_gig_inst_to_sf2_voice_cache_get_type ())
35 #define IPATCH_TYPE_CONVERTER_GIG_SAMPLE_TO_SF2_VOICE_CACHE \
36   (ipatch_converter_gig_sample_to_sf2_voice_cache_get_type ())
37 
38 GType ipatch_converter_gig_inst_to_sf2_voice_cache_get_type(void);
39 GType ipatch_converter_gig_sample_to_sf2_voice_cache_get_type(void);
40 
41 #endif
42