/Mobile/iPhone/StoffiRemote/StoffiRemote/SimulatedServer.h

http://yet-another-music-application.googlecode.com/ · 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. #import <Foundation/Foundation.h>
  9. #import "Configuration.h"
  10. @interface SimulatedServer : NSObject {
  11. NSDictionary *configuration;
  12. }
  13. @property (retain) NSDictionary *configuration;
  14. + (SimulatedServer *)sharedServer;
  15. - (NSDictionary *)testConfiguration;
  16. @end