/Mobile/iPhone/StoffiRemote/StoffiRemote/SimulatedServer.h
C++ Header | 22 lines | 9 code | 6 blank | 7 comment | 0 complexity | 6563aea62091ecbec42b9bc329beab2c MD5 | raw file
1// 2// SimulatedServer.h 3// StoffiRemote 4// 5// Created by Fredrik Gadnell on 10/1/11. 6// Copyright 2011 __MyCompanyName__. All rights reserved. 7// 8 9#import <Foundation/Foundation.h> 10#import "Configuration.h" 11 12 13@interface SimulatedServer : NSObject { 14 NSDictionary *configuration; 15} 16 17@property (retain) NSDictionary *configuration; 18 19+ (SimulatedServer *)sharedServer; 20- (NSDictionary *)testConfiguration; 21 22@end