-
Notifications
You must be signed in to change notification settings - Fork 507
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #757 from meganz/release/v3.1.9
Release/v3.1.9
- Loading branch information
Showing
197 changed files
with
3,908 additions
and
3,112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/** | ||
* @file MEGAChildrenLists.h | ||
* @brief Provides information about node's children organize | ||
* them into two list (files and folders) | ||
* | ||
* (c) 2013-2017 by Mega Limited, Auckland, New Zealand | ||
* | ||
* This file is part of the MEGA SDK - Client Access Engine. | ||
* | ||
* Applications using the MEGA API must present a valid application key | ||
* and comply with the the rules set forth in the Terms of Service. | ||
* | ||
* The MEGA SDK is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
* | ||
* @copyright Simplified (2-clause) BSD License. | ||
* | ||
* You should have received a copy of the license along with this | ||
* program. | ||
*/ | ||
|
||
#import <Foundation/Foundation.h> | ||
#import "MEGANodeList.h" | ||
|
||
/** | ||
* @brief Lists of file and folder children MEGANode objects | ||
* | ||
* A MEGAChildrenLists object has the ownership of the MEGANodeList objects that it contains, | ||
* so they will be only valid until the MEGAChildrenLists is deleted. If you want to retain | ||
* a MEGANodeList returned by a MEGAChildrenLists, use [MEGANodeList clone]. | ||
* | ||
* Objects of this class are immutable. | ||
*/ | ||
@interface MEGAChildrenLists : NSObject | ||
|
||
/** | ||
* @brief List of MEGANode folders | ||
*/ | ||
@property (nonatomic, readonly) MEGANodeList *folderList; | ||
|
||
/** | ||
* @brief List of MEGANode files | ||
*/ | ||
@property (nonatomic, readonly) MEGANodeList *fileList; | ||
|
||
- (instancetype)clone; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/** | ||
* @file MEGAChildrenLists.m | ||
* @brief Provides information about node's children organize | ||
* them into two list (files and folders) | ||
* | ||
* (c) 2013-2017 by Mega Limited, Auckland, New Zealand | ||
* | ||
* This file is part of the MEGA SDK - Client Access Engine. | ||
* | ||
* Applications using the MEGA API must present a valid application key | ||
* and comply with the the rules set forth in the Terms of Service. | ||
* | ||
* The MEGA SDK is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
* | ||
* @copyright Simplified (2-clause) BSD License. | ||
* | ||
* You should have received a copy of the license along with this | ||
* program. | ||
*/ | ||
|
||
#import "MEGAChildrenLists.h" | ||
#import "MEGAChildrenLists+init.h" | ||
#import "MEGANodeList+init.h" | ||
#import "megaapi.h" | ||
|
||
using namespace mega; | ||
|
||
@interface MEGAChildrenLists () | ||
|
||
@property MegaChildrenLists *megaChildrenLists; | ||
@property BOOL cMemoryOwn; | ||
|
||
@end | ||
|
||
@implementation MEGAChildrenLists | ||
|
||
- (instancetype)initWithMegaChildrenLists:(mega::MegaChildrenLists *)megaChildrenLists cMemoryOwn:(BOOL)cMemoryOwn { | ||
self = [super init]; | ||
|
||
if (self) { | ||
_megaChildrenLists = megaChildrenLists; | ||
_cMemoryOwn = cMemoryOwn; | ||
} | ||
|
||
return self; | ||
} | ||
|
||
- (void)dealloc { | ||
if (self.cMemoryOwn) { | ||
delete _megaChildrenLists; | ||
} | ||
} | ||
|
||
- (instancetype)clone { | ||
return self.megaChildrenLists ? [[MEGAChildrenLists alloc] initWithMegaChildrenLists:self.megaChildrenLists->copy() cMemoryOwn:YES] : nil; | ||
} | ||
|
||
- (MegaChildrenLists *)getCPtr { | ||
return self.megaChildrenLists; | ||
} | ||
|
||
- (MEGANodeList *)folderList { | ||
return self.megaChildrenLists ? [[MEGANodeList alloc] initWithNodeList:self.megaChildrenLists->getFolderList()->copy() cMemoryOwn:YES] : nil; | ||
} | ||
|
||
- (MEGANodeList *)fileList { | ||
return self.megaChildrenLists ? [[MEGANodeList alloc] initWithNodeList:self.megaChildrenLists->getFileList()->copy() cMemoryOwn:YES] : nil; | ||
} | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.