23 lines
422 B
Objective-C
23 lines
422 B
Objective-C
//
|
|
// WebserviceClient.h
|
|
// ipbc-Client
|
|
//
|
|
// Created by Gerrit Linnemann on 28.10.13.
|
|
// Copyright (c) 2013 Adawim UG (haftungsbeschränkt). All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface WebserviceClient : NSObject {
|
|
|
|
NSTimer *updateTimer;
|
|
NSString *usersIPv4;
|
|
BOOL isNetworkAvailable;
|
|
BOOL isRequestRunning;
|
|
}
|
|
|
|
-(BOOL)updateDomain;
|
|
-(void)checkNetworkAvailability;
|
|
|
|
@end
|