mirror of
https://github.com/danog/Telegram.git
synced 2024-12-11 17:09:46 +01:00
30 lines
424 B
Mathematica
30 lines
424 B
Mathematica
|
//
|
||
|
// GDFileStoreNode.m
|
||
|
// GDFileManagerExample
|
||
|
//
|
||
|
// Created by Graham Dennis on 15/07/13.
|
||
|
// Copyright (c) 2013 Graham Dennis. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "GDFileTreeNode.h"
|
||
|
|
||
|
@implementation GDFileTreeNode
|
||
|
|
||
|
- (id)init
|
||
|
{
|
||
|
return [self initWithURL:nil];
|
||
|
}
|
||
|
|
||
|
- (id)initWithURL:(NSURL *)url
|
||
|
{
|
||
|
NSParameterAssert(url);
|
||
|
|
||
|
if ((self = [super init])) {
|
||
|
_url = url;
|
||
|
}
|
||
|
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
@end
|