|
@@ -46,6 +46,26 @@
|
|
|
return self;
|
|
|
}
|
|
|
|
|
|
+- (id)copyWithZone: (NSZone *) zone
|
|
|
+{
|
|
|
+ CCSectionDataSourceMetadata *sectionDataSourceMetadata = [[CCSectionDataSourceMetadata allocWithZone: zone] init];
|
|
|
+
|
|
|
+ [sectionDataSourceMetadata setAllRecordsDataSource: self.allRecordsDataSource];
|
|
|
+ [sectionDataSourceMetadata setAllEtag: self.allEtag];
|
|
|
+ [sectionDataSourceMetadata setSections: self.sections];
|
|
|
+ [sectionDataSourceMetadata setSectionArrayRow: self.sectionArrayRow];
|
|
|
+ [sectionDataSourceMetadata setFileIDIndexPath: self.fileIDIndexPath];
|
|
|
+
|
|
|
+ [sectionDataSourceMetadata setVideo: self.video];
|
|
|
+ [sectionDataSourceMetadata setImage: self.image];
|
|
|
+
|
|
|
+ [sectionDataSourceMetadata setDirectories: self.directories];
|
|
|
+ [sectionDataSourceMetadata setFiles: self.files];
|
|
|
+ [sectionDataSourceMetadata setTotalSize: self.totalSize];
|
|
|
+
|
|
|
+ return sectionDataSourceMetadata;
|
|
|
+}
|
|
|
+
|
|
|
@end
|
|
|
|
|
|
|