mirror of
				https://github.com/TomHarte/CLK.git
				synced 2025-11-04 00:16:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			288 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			288 B
		
	
	
	
		
			C++
		
	
	
	
	
	
//
 | 
						|
//  ActivitySource.h
 | 
						|
//  Clock Signal
 | 
						|
//
 | 
						|
//  Created by Thomas Harte on 07/05/2018.
 | 
						|
//  Copyright 2018 Thomas Harte. All rights reserved.
 | 
						|
//
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include "Observer.hpp"
 | 
						|
 | 
						|
namespace Activity {
 | 
						|
 | 
						|
class Source {
 | 
						|
public:
 | 
						|
	virtual void set_activity_observer(Observer *) = 0;
 | 
						|
};
 | 
						|
 | 
						|
}
 |