File: InvocationOperation.h

package info (click to toggle)
agenda.app 0.47-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,008 kB
  • sloc: objc: 8,103; makefile: 16; sh: 5
file content (12 lines) | stat: -rw-r--r-- 306 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
/* emacs buffer mode hint -*- objc -*- */

#import <Foundation/NSObject.h>
#import <Foundation/NSOperation.h>

@interface InvocationOperation : NSOperation
{
  NSInvocation *_invocation;
}
- (id)initWithInvocation:(NSInvocation *)inv;
- (id)initWithTarget:(id)target selector:(SEL)sel object:(id)arg;
@end