CQTexperiment
parent
25b52f1ec2
commit
6c4f9c7745
|
@ -0,0 +1,18 @@
|
|||
//
|
||||
// AudioMetadataWriter.h
|
||||
// CogAudio
|
||||
//
|
||||
// Created by Safari on 08/11/18.
|
||||
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
|
||||
@interface AudioMetadataWriter : NSObject {
|
||||
|
||||
}
|
||||
|
||||
+ (NSDictionary *)putMetadataInURL:(NSURL *)url;
|
||||
|
||||
@end
|
|
@ -0,0 +1,17 @@
|
|||
//
|
||||
// AudioMetadataWriter.m
|
||||
// CogAudio
|
||||
//
|
||||
// Created by Safari on 08/11/18.
|
||||
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
||||
//
|
||||
|
||||
#import "AudioMetadataWriter.h"
|
||||
#import "PluginController.h"
|
||||
|
||||
@implementation AudioMetadataWriter
|
||||
+ (NSDictionary *)putMetadataInURL:(NSURL *)url
|
||||
{
|
||||
return [[PluginController sharedPluginController] putMetadataInURL:url];
|
||||
}
|
||||
@end
|
Loading…
Reference in New Issue