From 761a8910178f2483cd926e44be5c78d3b826a266 Mon Sep 17 00:00:00 2001 From: Matej Jan Date: Wed, 13 Apr 2011 22:36:12 +0000 Subject: [PATCH] Empty implementation added for gamer services to avoid warnings. git-svn-id: http://xni.googlecode.com/svn/XNI@63 ac433895-eea3-a490-d80a-17149a75e588 --- .../Xni/Framework/GamerServices/Gamer.m | 17 +++++++++++++++++ .../Xni/Framework/GamerServices/SignedInGamer.m | 5 +++++ 2 files changed, 22 insertions(+) diff --git a/Classes/Retronator/Xni/Framework/GamerServices/Gamer.m b/Classes/Retronator/Xni/Framework/GamerServices/Gamer.m index 94a6e18..722a252 100644 --- a/Classes/Retronator/Xni/Framework/GamerServices/Gamer.m +++ b/Classes/Retronator/Xni/Framework/GamerServices/Gamer.m @@ -11,4 +11,21 @@ @implementation Gamer +@synthesize displayName, gamertag, tag; + ++ (SignedInGamerCollection*) signedInGamers { + [NSException raise:@"NotImplementedException" format:@"This method is not yet implemented."]; + return nil; +} + ++ (Gamer*) getFromGamertag:(NSString*)gamertag { + [NSException raise:@"NotImplementedException" format:@"This method is not yet implemented."]; + return nil; +} + +- (GamerProfile*) getProfile { + [NSException raise:@"NotImplementedException" format:@"This method is not yet implemented."]; + return nil; +} + @end diff --git a/Classes/Retronator/Xni/Framework/GamerServices/SignedInGamer.m b/Classes/Retronator/Xni/Framework/GamerServices/SignedInGamer.m index e5693ce..cc725b9 100644 --- a/Classes/Retronator/Xni/Framework/GamerServices/SignedInGamer.m +++ b/Classes/Retronator/Xni/Framework/GamerServices/SignedInGamer.m @@ -11,4 +11,9 @@ @implementation SignedInGamer +- (AchievementCollection *)getAchievements { + [NSException raise:@"NotImplementedException" format:@"This method is not yet implemented."]; + return nil; +} + @end