mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-10 08:04:45 +00:00
24 lines
424 B
C++
24 lines
424 B
C++
//
|
|
// StateProducer.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 24/04/2021.
|
|
// Copyright © 2021 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include "../Analyser/Static/StaticAnalyser.hpp"
|
|
|
|
namespace MachineTypes {
|
|
|
|
struct StateProducer {
|
|
// TODO.
|
|
// virtual bool get_state(Analyser::Static::State *, [[maybe_unused]] bool advance_to_simple = false) {
|
|
// return false;
|
|
// }
|
|
};
|
|
|
|
};
|