39 lines
611 B
Plaintext
39 lines
611 B
Plaintext
//
|
|
// MADPropertiesReader.m
|
|
// MAD
|
|
//
|
|
// Created by Vincent Spader on 2/24/07.
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "ShortenPropertiesReader.h"
|
|
#import "ShortenDecoder.h"
|
|
|
|
@implementation ShortenPropertiesReader
|
|
|
|
+ (NSDictionary *)propertiesForSource:(id<CogSource>)source
|
|
{
|
|
NSDictionary *properties;
|
|
ShortenDecoder *decoder;
|
|
|
|
decoder = [[ShortenDecoder alloc] init];
|
|
if (![decoder open:source])
|
|
{
|
|
return nil;
|
|
}
|
|
|
|
properties = [decoder properties];
|
|
|
|
[decoder close];
|
|
|
|
return properties;
|
|
}
|
|
|
|
|
|
+ (NSArray *)fileTypes
|
|
{
|
|
return [ShortenDecoder fileTypes];
|
|
}
|
|
|
|
@end
|