1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-17 17:25:18 +00:00
CLK/OSBindings/Mac/Clock Signal/Updater/CSBestEffortUpdater.h

21 lines
361 B
C
Raw Normal View History

//
// CSBestEffortUpdater.h
// Clock Signal
//
// Created by Thomas Harte on 16/06/2016.
// Copyright 2016 Thomas Harte. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreVideo/CoreVideo.h>
#import "CSMachine.h"
@interface CSBestEffortUpdater : NSObject
- (void)update;
- (void)flush;
- (void)setMachine:(CSMachine *)machine;
@end