mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-06 13:31:55 +00:00
25 lines
413 B
C++
25 lines
413 B
C++
//
|
|
// ActivitySource.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 07/05/2018.
|
|
// Copyright © 2018 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef ActivitySource_h
|
|
#define ActivitySource_h
|
|
|
|
#include "../ActivityObserver/ActivityObserver.hpp"
|
|
|
|
namespace ActivitySource {
|
|
|
|
class Machine {
|
|
public:
|
|
virtual void set_activity_observer(ActivityObserver *receiver) = 0;
|
|
};
|
|
|
|
}
|
|
|
|
|
|
#endif /* ActivitySource_h */
|