// include OGoContentPage #include // all OGo page components inherit from OGoContentPage @interface HelloWorld : OGoContentPage { } @end #import #include @implementation HelloWorld // a sample accessors - (NSString *)sayHello { return [NSString stringWithFormat:@"Hello %@!", [(OGoSession *)[self session] activeLogin]]; } @end /* HelloWorld */