Index: class-dump/src/CDLCSubLibrary.h |
=================================================================== |
--- class-dump/src/CDLCSubLibrary.h (revision 0) |
+++ class-dump/src/CDLCSubLibrary.h (revision 0) |
@@ -0,0 +1,22 @@ |
+// -*- mode: ObjC -*- |
+ |
+// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files. |
+// Copyright (C) 1997-1998, 2000-2001, 2004-2010 Steve Nygard. |
+ |
+#import "CDLoadCommand.h" |
+ |
+@interface CDLCSubLibrary : CDLoadCommand |
+{ |
+ struct sub_library_command command; |
+ NSString *name; |
+} |
+ |
+- (id)initWithDataCursor:(CDDataCursor *)cursor machOFile:(CDMachOFile *)aMachOFile; |
+- (void)dealloc; |
+ |
+- (uint32_t)cmd; |
+- (uint32_t)cmdsize; |
+ |
+- (NSString *)name; |
+ |
+@end |
Property changes on: class-dump/src/CDLCSubLibrary.h |
___________________________________________________________________ |
Added: svn:eol-style |
+ LF |