2016-09-01 00:43:29 +00: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 20:31:50 +00:00
|
|
|
@property(nonatomic, readonly) NSString *optionsPanelNibName;
|
2016-10-02 20:57:57 +00:00
|
|
|
- (CSMachine *)newMachine;
|
2016-10-02 20:31:50 +00:00
|
|
|
|
2016-09-13 02:15:38 +00:00
|
|
|
@property(nonatomic, readonly) NSString *displayName;
|
2016-10-02 20:31:50 +00:00
|
|
|
|
2016-09-01 00:43:29 +00:00
|
|
|
- (void)applyToMachine:(CSMachine *)machine;
|
|
|
|
|
|
|
|
@end
|