VocalEasel/Sources/VLXMLDocument.h

18 lines
351 B
C
Raw Normal View History

2006-10-13 08:10:40 +00:00
//
// 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)
2006-10-22 07:16:29 +00:00
- (NSData *)XMLDataWithError:(NSError **)outError;
- (BOOL)readFromXMLData:(NSData *)data error:(NSError **)outError;
2006-10-13 08:10:40 +00:00
@end