Add preference to skip hidden files during sync.
[pithos-macos] / pithos-macos / PithosAccount.h
index 9cc27f4..617d772 100644 (file)
@@ -49,6 +49,7 @@
     BOOL syncActive;
     NSString *syncDirectoryPath;
     NSMutableDictionary *syncAccountsDictionary;
+    BOOL syncSkipHidden;
     NSDate *syncLastCompleted;
     PithosSyncDaemon *syncDaemon;
         
@@ -86,6 +87,7 @@
 @property (nonatomic, assign) BOOL syncActive;
 @property (nonatomic, retain) NSString *syncDirectoryPath;
 @property (nonatomic, retain) NSMutableDictionary *syncAccountsDictionary;
+@property (nonatomic, assign) BOOL syncSkipHidden;
 @property (nonatomic, retain) NSDate *syncLastCompleted;
 @property (nonatomic, retain) PithosSyncDaemon *syncDaemon;
 
 - (void)loginWithServerURL:(NSString *)aServerURL;
 - (void)updateSyncWithSyncActive:(BOOL)aSyncActive 
                syncDirectoryPath:(NSString *)aSyncDirectoryPath 
-          syncAccountsDictionary:(NSMutableDictionary *)aSyncAccountsDictionary;
+          syncAccountsDictionary:(NSMutableDictionary *)aSyncAccountsDictionary 
+                  syncSkipHidden:(BOOL)aSyncSkipHidden;
 
 @end