mirror of
https://github.com/TomHarte/CLK.git
synced 2026-01-26 06:16:22 +00:00
16 lines
340 B
Objective-C
16 lines
340 B
Objective-C
//
|
|
// CSFileObserver.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 22/02/2025.
|
|
// Copyright © 2025 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface CSFileContentChangeObserver: NSObject
|
|
|
|
- (nullable instancetype)initWithURL:(nonnull NSURL *)url handler:(nonnull dispatch_block_t)handler;
|
|
|
|
@end
|