mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Make RSParser a local package.
This commit is contained in:
26
RSParser/Sources/ObjC/ParserData.m
Normal file
26
RSParser/Sources/ObjC/ParserData.m
Normal file
@@ -0,0 +1,26 @@
|
||||
//
|
||||
// ParserData.m
|
||||
// RSParser
|
||||
//
|
||||
// Created by Brent Simmons on 10/4/17.
|
||||
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
|
||||
//
|
||||
|
||||
#import "ParserData.h"
|
||||
|
||||
@implementation ParserData
|
||||
|
||||
- (instancetype)initWithURL:(NSString *)url data:(NSData *)data {
|
||||
|
||||
self = [super init];
|
||||
if (!self) {
|
||||
return nil;
|
||||
}
|
||||
|
||||
_url = url;
|
||||
_data = data;
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user