mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 10:27:46 +01:00
30 lines
424 B
Objective-C
Executable File
30 lines
424 B
Objective-C
Executable File
//
|
|
// 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
|