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

github.com/mumble-voip/mumblekit.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 04:34:09 +0400
committerMikkel Krautz <mikkel@krautz.dk>2011-07-30 04:34:09 +0400
commitece344bfcd2c43cfd0e5e2a2f1291ba8e969141e (patch)
tree8a0c349fe26ecfb965dd96250d1197a4ad3c0b24 /src/MumbleKit/MKServerPinger.h
parent1947ec2ba171c07c45c4830aa24fdbe45abf2ac4 (diff)
Don't expose ivars in class @interfaces in public headers.
Diffstat (limited to 'src/MumbleKit/MKServerPinger.h')
-rw-r--r--src/MumbleKit/MKServerPinger.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/MumbleKit/MKServerPinger.h b/src/MumbleKit/MKServerPinger.h
index 708edce..543a93b 100644
--- a/src/MumbleKit/MKServerPinger.h
+++ b/src/MumbleKit/MKServerPinger.h
@@ -40,14 +40,12 @@ typedef struct _MKServerPingerResult {
- (void) serverPingerResult:(MKServerPingerResult *)result;
@end
-@interface MKServerPinger : NSObject {
- NSData *_address;
- id<MKServerPingerDelegate> _delegate;
-}
+@interface MKServerPinger : NSObject
- (id) initWithHostname:(NSString *)hostname port:(NSString *)port;
- (void) dealloc;
- (id<MKServerPingerDelegate>)delegate;
- (void) setDelegate:(id<MKServerPingerDelegate>)delegate;
+
@end