Cog/Plugins/CueSheet/CueSheetMetadataReader.h
Christopher Snowhill aaade58842 [Cuesheet Input] Fix metadata handling by merge
The inputs now have their own metadata function, so it should merge in
the track tags from the Cuesheet, and not just forward it to the
decoder.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2022-06-12 00:55:37 -07:00

20 lines
364 B
Objective-C

//
// CueSheetMetadataReader.h
// CueSheet
//
// Created by Vincent Spader on 10/12/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "Plugin.h"
#import "CueSheetTrack.h"
@interface CueSheetMetadataReader : NSObject <CogMetadataReader> {
}
+ (NSDictionary *)processDataForTrack:(CueSheetTrack *)track;
@end