mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 11:14:00 +00:00
18 lines
398 B
Objective-C
18 lines
398 B
Objective-C
//
|
|
// VLXMLDocument.h
|
|
// Vocalese
|
|
//
|
|
// Created by Matthias Neeracher on 10/10/06.
|
|
// Copyright 2006 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "VLDocument.h"
|
|
|
|
@interface VLDocument (XML)
|
|
|
|
- (NSFileWrapper *)XMLFileWrapperWithError:(NSError **)outError flat:(BOOL)flat;
|
|
- (BOOL)readFromXMLFileWrapper:(NSFileWrapper *)wrapper error:(NSError **)outError;
|
|
|
|
@end
|