All Downloads are FREE. Search and download functionalities are using the official Maven repository.

objc.SWGObject.m Maven / Gradle / Ivy

The newest version!
#import "SWGObject.h"

@implementation SWGObject

- (id) initWithValues:(NSDictionary*)dict {
    return self;
}

- (NSDictionary*) asDictionary{
    return [NSDictionary init];
}

- (NSString*)description {
    return [NSString stringWithFormat:@"%@ %@", [super description], [self asDictionary]];
}

@end




© 2015 - 2024 Weber Informatics LLC | Privacy Policy