root/projects/macosx/frontrow_plugin/VLCDebug.m

Revision 663058fa5d6ee0b4c5aaa10f8d3398f957c06b0d, 0.7 kB (checked in by Pierre d'Herbemont <pdherbemont@videolan.org>, 10 months ago)

macosx: FrontRow? plugin initial import. Patch by hyei.

  • Property mode set to 100644
Line 
1 //
2 //  VLCDebug.m
3 //  FRVLC
4 //
5 //  Created by hyei on 06/09/07.
6 //  Copyright 2007 __MyCompanyName__. All rights reserved.
7 //
8
9 #import "VLCDebug.h"
10
11 static VLCFakeObject * sharedFakeObject = nil;
12
13 @implementation VLCFakeObject
14
15 + (id)sharedFakeObject
16 {
17     if(sharedFakeObject == nil) {
18         sharedFakeObject = [[VLCFakeObject alloc] init];
19     }
20    
21     return sharedFakeObject;
22 }
23
24 - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector
25 {
26     NSLog(@"methodSignatureForSelector: %@", NSStringFromSelector(aSelector));
27     return nil;
28 }
29
30 - (void)forwardInvocation:(NSInvocation *)anInvocation
31 {
32     NSLog(@"forwardInvocation: %@", anInvocation);
33 }
34
35 - (BOOL)respondsToSelector:(SEL)selector
36 {
37     return YES;
38 }
39
40 @end
Note: See TracBrowser for help on using the browser.