mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-30 04:50:08 +00:00
16 lines
312 B
Objective-C
16 lines
312 B
Objective-C
//
|
|
// CSStaticAnalyser+ResultVector.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 24/01/2018.
|
|
// Copyright © 2018 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import "CSStaticAnalyser.h"
|
|
|
|
@interface CSStaticAnalyser (ResultVector)
|
|
|
|
- (std::vector<std::unique_ptr<Analyser::Static::Target>> &)targets;
|
|
|
|
@end
|