mirror of
https://github.com/nextcloud/desktop.git
synced 2026-01-14 02:01:28 +00:00
16 lines
280 B
Objective-C
16 lines
280 B
Objective-C
/*
|
|
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef LineProcessor_h
|
|
#define LineProcessor_h
|
|
|
|
@protocol LineProcessor<NSObject>
|
|
|
|
- (void)process:(NSString*)line;
|
|
|
|
@end
|
|
|
|
#endif /* LineProcessor_h */
|