2015-06-15 15:57:33 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Jocelyn Turcotte <jturcotte@woboq.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import <FinderSync/FinderSync.h>
|
2022-12-23 20:24:05 +03:00
|
|
|
#import <NCDesktopClientSocketKit/LocalSocketClient.h>
|
|
|
|
|
2022-02-23 20:38:22 +03:00
|
|
|
#import "SyncClient.h"
|
2022-12-23 20:24:05 +03:00
|
|
|
#import "FinderSyncSocketLineProcessor.h"
|
2015-06-15 15:57:33 +03:00
|
|
|
|
2022-02-23 20:38:22 +03:00
|
|
|
@interface FinderSync : FIFinderSync <SyncClientDelegate>
|
2015-06-15 15:57:33 +03:00
|
|
|
|
2022-12-23 20:24:05 +03:00
|
|
|
@property FinderSyncSocketLineProcessor *lineProcessor;
|
2022-02-23 20:38:22 +03:00
|
|
|
@property LocalSocketClient *localSocketClient;
|
|
|
|
|
2015-06-15 15:57:33 +03:00
|
|
|
@end
|