2017-06-21 06:18:46 +02:00
|
|
|
//
|
|
|
|
// RSOPMLParser.h
|
2017-06-26 01:32:07 +02:00
|
|
|
// RSParser
|
2017-06-21 06:18:46 +02:00
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 7/12/15.
|
|
|
|
// Copyright © 2015 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
@import Foundation;
|
|
|
|
|
|
|
|
|
2017-06-26 01:32:07 +02:00
|
|
|
@class ParserData;
|
2017-06-21 06:18:46 +02:00
|
|
|
@class RSOPMLDocument;
|
|
|
|
|
|
|
|
@interface RSOPMLParser: NSObject
|
|
|
|
|
2017-06-26 01:32:07 +02:00
|
|
|
+ (RSOPMLDocument *)parseOPMLWithParserData:(ParserData *)parserData error:(NSError **)error;
|
2017-06-21 06:18:46 +02:00
|
|
|
|
|
|
|
@end
|
|
|
|
|