mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-11 17:06:46 +01:00
27 lines
372 B
Mathematica
27 lines
372 B
Mathematica
|
//
|
||
|
// 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
|