1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-04 03:29:34 +00:00
CLK/Storage/State/SNA.hpp
2023-05-10 16:02:18 -05:00

23 lines
422 B
C++

//
// SNA.hpp
// Clock Signal
//
// Created by Thomas Harte on 24/04/2021.
// Copyright © 2021 Thomas Harte. All rights reserved.
//
#ifndef Storage_State_SNA_hpp
#define Storage_State_SNA_hpp
#include "../../Analyser/Static/StaticAnalyser.hpp"
namespace Storage::State {
struct SNA {
static std::unique_ptr<Analyser::Static::Target> load(const std::string &file_name);
};
}
#endif /* Storage_State_SNA_hpp */