Horizon
export_pdf.hpp
1 #pragma once
2 #include <functional>
3 #include <string>
4 
5 namespace horizon {
6 void export_pdf(const class Schematic &sch, const class PDFExportSettings &settings,
7  std::function<void(std::string, double)> cb = nullptr);
8 }