mirror of
				https://github.com/TomHarte/CLK.git
				synced 2025-11-04 00:16:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			634 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			634 B
		
	
	
	
		
			C++
		
	
	
	
	
	
//
 | 
						|
//  MachineTypes.hpp
 | 
						|
//  Clock Signal
 | 
						|
//
 | 
						|
//  Created by Thomas Harte on 31/03/2020.
 | 
						|
//  Copyright © 2020 Thomas Harte. All rights reserved.
 | 
						|
//
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
// Rounds up everything in the MachineTypes namespace, all being
 | 
						|
// optional (at least, semantically) interfaces that machines
 | 
						|
// might implement. These header files are intended to be light,
 | 
						|
// so including all shouldn't be a huge burden.
 | 
						|
 | 
						|
#include "AudioProducer.hpp"
 | 
						|
#include "JoystickMachine.hpp"
 | 
						|
#include "KeyboardMachine.hpp"
 | 
						|
#include "MediaTarget.hpp"
 | 
						|
#include "MouseMachine.hpp"
 | 
						|
#include "ScanProducer.hpp"
 | 
						|
#include "StateProducer.hpp"
 | 
						|
#include "TimedMachine.hpp"
 |