mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-05 06:05:27 +00:00
17 lines
342 B
C
17 lines
342 B
C
|
//
|
||
|
// CSScanTarget+C__ScanTarget.h
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 08/08/2020.
|
||
|
// Copyright © 2020 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "CSScanTarget.h"
|
||
|
#include "ScanTarget.hpp"
|
||
|
|
||
|
@interface CSScanTarget (CppScanTarget)
|
||
|
|
||
|
@property (nonatomic, readonly, nonnull) Outputs::Display::ScanTarget *scanTarget;
|
||
|
|
||
|
@end
|