Marino Faggiana 8 жил өмнө
parent
commit
a9ea19f020

+ 4 - 0
PickerFileProvider-Bridging-Header.h

@@ -0,0 +1,4 @@
+//
+//  Use this file to import your target's public headers that you would like to expose to Swift.
+//
+

+ 1 - 0
iOSClient/AppDelegate.m

@@ -41,6 +41,7 @@
 
 @interface AppDelegate ()
 {
+    
 }
 @end
 

+ 22 - 0
iOSClient/FileSystem/TableDirectory+CoreDataClass.h

@@ -0,0 +1,22 @@
+//
+//  TableDirectory+CoreDataClass.h
+//  Nextcloud
+//
+//  Created by Marino Faggiana on 06/02/17.
+//  Copyright © 2017 TWS. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+#import <CoreData/CoreData.h>
+
+@class TableLocalFile;
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface TableDirectory : NSManagedObject
+
+@end
+
+NS_ASSUME_NONNULL_END
+
+#import "TableDirectory+CoreDataProperties.h"

+ 13 - 0
iOSClient/FileSystem/TableDirectory+CoreDataClass.m

@@ -0,0 +1,13 @@
+//
+//  TableDirectory+CoreDataClass.m
+//  Nextcloud
+//
+//  Created by Marino Faggiana on 06/02/17.
+//  Copyright © 2017 TWS. All rights reserved.
+//
+
+#import "TableDirectory+CoreDataClass.h"
+#import "TableLocalFile.h"
+@implementation TableDirectory
+
+@end

+ 22 - 0
iOSClient/FileSystem/TableLocalFile+CoreDataClass.h

@@ -0,0 +1,22 @@
+//
+//  TableLocalFile+CoreDataClass.h
+//  Nextcloud
+//
+//  Created by Marino Faggiana on 06/02/17.
+//  Copyright © 2017 TWS. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+#import <CoreData/CoreData.h>
+
+@class TableDirectory;
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface TableLocalFile : NSManagedObject
+
+@end
+
+NS_ASSUME_NONNULL_END
+
+#import "TableLocalFile+CoreDataProperties.h"

+ 13 - 0
iOSClient/FileSystem/TableLocalFile+CoreDataClass.m

@@ -0,0 +1,13 @@
+//
+//  TableLocalFile+CoreDataClass.m
+//  Nextcloud
+//
+//  Created by Marino Faggiana on 06/02/17.
+//  Copyright © 2017 TWS. All rights reserved.
+//
+
+#import "TableLocalFile+CoreDataClass.h"
+#import "TableDirectory.h"
+@implementation TableLocalFile
+
+@end