File: MissingMethods.h

package info (click to toggle)
gstep-extensions 0.8.5.990905-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 592 kB
  • ctags: 429
  • sloc: objc: 2,819; sh: 1,836; ansic: 860; makefile: 209; lex: 194
file content (74 lines) | stat: -rw-r--r-- 1,941 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* 
   MissingMethods.h

   Copyright (C) 1995, 1996, 1997 Ovidiu Predescu and Mircea Oancea.
   All rights reserved.

   Author: Ovidiu Predescu <ovidiu@bx.logicnet.ro>

   This file is part of the Foundation Extensions Library.

   Permission to use, copy, modify, and distribute this software and its
   documentation for any purpose and without fee is hereby granted, provided
   that the above copyright notice appear in all copies and that both that
   copyright notice and this permission notice appear in supporting
   documentation.

   We disclaim all warranties with regard to this software, including all
   implied warranties of merchantability and fitness, in no event shall
   we be liable for any special, indirect or consequential damages or any
   damages whatsoever resulting from loss of use, data or profits, whether in
   an action of contract, negligence or other tortious action, arising out of
   or in connection with the use or performance of this software.
*/

#ifndef __MissingMethods_h__
#define __MissingMethods_h__

#import <Foundation/NSArray.h>
#import <Foundation/NSDictionary.h>
#import <Foundation/NSValue.h>
#import <Foundation/NSMethodSignature.h>

#if (__GNUC__ == 2) && (__GNUC_MINOR__ <= 6) && !defined(__attribute__)
#  define __attribute__(x)
#endif


#ifndef LIB_FOUNDATION_LIBRARY

@interface NSArray (AdditionalMethods)
- initWithArray:(NSArray *)anArray copyItems:(BOOL)flag;
@end

#endif


#if NeXT_Foundation_LIBRARY

typedef struct {
    int	offset;
    int	size;
    const char* type;
} NSArgumentInfo;

@interface NSMethodSignature (MissingMethods)
- (NSArgumentInfo)argumentInfoAtIndex:(unsigned)index;
@end



#endif


#if NeXT_Foundation_LIBRARY || Sun_Foundation_LIBRARY

@interface NSObject (MissingMethods)
- subclassResponsibility:(SEL)aSel;
- notImplemented:(SEL)aSel;
@end /* NSObject (MissingMethods) */

#endif /* NeXT_Foundation_LIBRARY */


#endif /* __MissingMethods_h__ */