VocalEasel/Sources/VLXMLDocument.h

20 lines
435 B
C
Raw Permalink Normal View History

2006-10-13 08:10:40 +00:00
//
2007-04-27 06:41:34 +00:00
// File: VLXMLDocument.h - Read and write native (MusicXML) document format
2006-10-13 08:10:40 +00:00
//
2007-04-27 06:41:34 +00:00
// Author(s):
//
// (MN) Matthias Neeracher
//
// Copyright © 2006-2007 Matthias Neeracher
2006-10-13 08:10:40 +00:00
//
#import <Cocoa/Cocoa.h>
#import "VLDocument.h"
@interface VLDocument (XML)
- (NSFileWrapper *)XMLFileWrapperWithError:(NSError **)outError flat:(BOOL)flat;
- (BOOL)readFromXMLFileWrapper:(NSFileWrapper *)wrapper error:(NSError **)outError;
2006-10-13 08:10:40 +00:00
@end