MusicKit  0.0.0
MKPatch.h
00001 /*
00002   $Id$
00003   Defined In: The MusicKit
00004 
00005   Description:
00006     Each MKPatch is an abstracted superclass of synthesis patch descriptions independent
00007     of the mechanism used to synthesize. Therefore, it holds synthesis independent patch
00008     methods, such as patch loading from bundles.
00009     
00010   Original Author: Leigh M. Smith <leigh@tomandandy.com>
00011 
00012   Copyright (c) 2001 tomandandy, Inc.
00013   Permission is granted to use and modify this code for commercial and non-commercial
00014   purposes so long as the author attribution and this copyright message remains intact
00015   and accompanies all derived code.
00016 */
00023 #import <Foundation/Foundation.h>
00024 
00025 @interface MKPatch : NSObject
00026 {
00027 }
00028 
00029 @end
00030 
00031 @interface MKPatch(PatchLoad)
00032 
00056 + (Class) findPatchClass: (NSString *) className;
00057 
00058 @end