mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 11:14:00 +00:00
19 lines
310 B
C
19 lines
310 B
C
|
//
|
||
|
// File: VLMP3Document.h - Export document in MP3 format
|
||
|
//
|
||
|
// Author(s):
|
||
|
//
|
||
|
// (MN) Matthias Neeracher
|
||
|
//
|
||
|
// Copyright © 2008 Matthias Neeracher
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
#import "VLDocument.h"
|
||
|
|
||
|
@interface VLDocument (MP3)
|
||
|
|
||
|
- (NSFileWrapper *)mp3FileWrapperWithError:(NSError **)outError;
|
||
|
|
||
|
@end
|