mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-02 01:04:54 +00:00
d61f478a39
I think it doesn't make sense for states to own a target as that complicates the concept of Media. Plus they're distinct because it makes sense to have only one per Target. Let's see how this pans out.
25 lines
393 B
C++
25 lines
393 B
C++
//
|
|
// SNA.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 24/04/2021.
|
|
// Copyright © 2021 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef SNA_hpp
|
|
#define SNA_hpp
|
|
|
|
#include "../../Analyser/Static/StaticAnalyser.hpp"
|
|
|
|
namespace Storage {
|
|
namespace State {
|
|
|
|
struct SNA {
|
|
static std::unique_ptr<Analyser::Static::Target> load(const std::string &file_name);
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* SNA_hpp */
|