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