Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble-iphoneos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2011-07-30 03:05:59 +0400
committerMikkel Krautz <mikkel@krautz.dk>2011-07-30 03:05:59 +0400
commita1409346463fc5ef6bf7bac5b89bb98a0d2b1f7d (patch)
tree24eedb2858bdf1d0475fbcdc00be3b6afabdcca7 /Source/Classes/MULogEntry.h
parent7d0bc245ad93c7a0b14f04045ed561d63a0ff0e5 (diff)
Change all Private class categories to be class extensions, and move all ivars into them (from headers).
Diffstat (limited to 'Source/Classes/MULogEntry.h')
-rw-r--r--Source/Classes/MULogEntry.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/Source/Classes/MULogEntry.h b/Source/Classes/MULogEntry.h
index bb54ac6..582a23c 100644
--- a/Source/Classes/MULogEntry.h
+++ b/Source/Classes/MULogEntry.h
@@ -31,15 +31,9 @@
#import <Foundation/Foundation.h>
-@interface MULogEntry : NSObject {
- NSDate *_date;
- NSString *_text;
-}
-
+@interface MULogEntry : NSObject
- (id) initWithText:(NSString *)text;
- (void) dealloc;
-
- (NSDate *) date;
- (NSString *) text;
-
@end