MusicKit  0.0.0
MKPatchConnection.h
00001 /*
00002   $Id$
00003   Defined In: The MusicKit
00004 
00005   Description:
00006 
00007   Original Author: Leigh M. Smith <leigh@tomandandy.com>
00008 
00009   Copyright (c) 1999 tomandandy music inc.
00010 
00011   Permission is granted to use and modify this code for commercial and non-commercial
00012   purposes so long as the author attribution and this copyright message remains intact
00013   and accompanies all derived code.
00014 */
00015 /*
00016   $Log$
00017   Revision 1.1  2000/06/09 03:19:07  leigh
00018   Added MKPatchConnection to remove a struct which required Storage
00019 
00020 */
00021 #ifndef __MK_PatchConnection_H___
00022 #define __MK_PatchConnection_H___
00023 
00024 #import <Foundation/Foundation.h>
00025 
00026 @interface MKPatchConnection : NSObject
00027 {
00028 @public
00029     unsigned _toObjectOffset;   
00030     unsigned _argObjectOffset;
00031     SEL _aSelector;
00032     IMP _methodImp;
00033 }
00034 
00035 - initWithTargetObjectOffset: (int) toObjInt selector: (SEL) aSelector argument: (int) withObjInt;
00036 
00037 @end
00038 
00039 #endif