2016-08-31 20:43:29 -04:00
|
|
|
//
|
|
|
|
// CSStaticAnalyser.h
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 31/08/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
@class CSMachine;
|
|
|
|
|
|
|
|
@interface CSStaticAnalyser : NSObject
|
|
|
|
|
|
|
|
- (instancetype)initWithFileAtURL:(NSURL *)url;
|
|
|
|
|
2016-10-02 16:31:50 -04:00
|
|
|
@property(nonatomic, readonly) NSString *optionsPanelNibName;
|
2016-10-02 16:57:57 -04:00
|
|
|
- (CSMachine *)newMachine;
|
2016-10-02 16:31:50 -04:00
|
|
|
|
2016-09-12 22:15:38 -04:00
|
|
|
@property(nonatomic, readonly) NSString *displayName;
|
2016-10-02 16:31:50 -04:00
|
|
|
|
2016-08-31 20:43:29 -04:00
|
|
|
- (void)applyToMachine:(CSMachine *)machine;
|
|
|
|
|
|
|
|
@end
|