|
HAL
v4.5.0-83-g30c8f0afc
The Hardware Analyzer - a comprehensive reverse engineering and manipulation framework for gate-level netlists.
|
#include <hal_core/netlist/netlist_writer/netlist_writer.h>


Public Member Functions | |
| NetlistWriter ()=default | |
| virtual | ~NetlistWriter ()=default |
| virtual Result< std::monostate > | write (Netlist *netlist, const std::filesystem::path &file_path)=0 |
The base class for all netlist writers. A writer serializes a netlist into a file of the format that it implements.
Definition at line 44 of file netlist_writer.h.
|
default |
|
virtualdefault |
|
pure virtual |
Write the netlist to a file at the provided location.
| [in] | netlist | - The netlist. |
| [in] | file_path | - The output path. |
true on success, false otherwise. Implemented in hal::VerilogWriter, and hal::GexfWriter.