annotate iViewController.h @ 9:346807b47860

added extra files: JSON stuff and ofxPD altered example code.
author Robert Tubb <rt300@eecs.qmul.ac.uk>
date Wed, 16 Jan 2013 13:44:07 +0000
parents
children 6a9191f5b269
rev   line source
rt300@9 1 //
rt300@9 2 // iViewController.h
rt300@9 3 // oscSenderExample
rt300@9 4 //
rt300@9 5 // Created by Robert Tubb on 07/01/2013.
rt300@9 6 //
rt300@9 7 //
rt300@9 8
rt300@9 9 #import <Foundation/Foundation.h>
rt300@9 10
rt300@9 11 #include "eventLogger.h"
rt300@9 12 #include "presetManager.h"
rt300@9 13
rt300@9 14 @interface IViewController : NSObject <UIAlertViewDelegate>
rt300@9 15
rt300@9 16
rt300@9 17
rt300@9 18 -(void)showUserNamePrompt;
rt300@9 19 - (void)showPresetNamePrompt;
rt300@9 20 - (void)showQuestionPrompt:(NSString *)question;
rt300@9 21 @end
rt300@9 22