]> git.sesse.net Git - vlc/blob - projects/macosx/frontrow_plugin/VLCDebug.m
macosx: Make sure empty nodes are shown as node.
[vlc] / projects / macosx / frontrow_plugin / VLCDebug.m
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