![]() |
HAL
|
#include "hal_core/defines.h"
#include "hal_core/utilities/program_options.h"
#include <functional>
#include <set>
#include <string>
#include <tuple>
#include <unordered_map>
Go to the source code of this file.
Namespaces | |
hal | |
hal::netlist_writer_manager | |
Typedefs | |
using | hal::netlist_writer_manager::WriterFactory = std::function< std::unique_ptr< NetlistWriter >()> |
Functions | |
ProgramOptions | hal::netlist_writer_manager::get_cli_options () |
void | hal::netlist_writer_manager::register_writer (const std::string &name, const WriterFactory &writer_factory, const std::vector< std::string > &supported_file_extensions) |
void | hal::netlist_writer_manager::unregister_writer (const std::string &name) |
bool | hal::netlist_writer_manager::write (Netlist *netlist, const ProgramArguments &args) |
bool | hal::netlist_writer_manager::write (Netlist *netlist, const std::filesystem::path &file_path) |
const std::unordered_map< std::string, std::vector< std::string > > & | hal::netlist_writer_manager::get_writer_extensions () |
Retrieve the extensions for which extensions have been registered. More... | |