|
KiCad PCB EDA Suite
|
General utilities for PCB file IO for QA programs. More...
#include <iostream>#include <memory>#include <string>Go to the source code of this file.
Namespaces | |
| namespace | KI_TEST |
Functions | |
| std::string | KI_TEST::GetPcbnewTestDataDir () |
| Utility which returns a path to the data directory where the test board files are stored. | |
| void | KI_TEST::DumpBoardToFile (BOARD &aBoard, const std::string &aFilename) |
| Utility function to simply write a Board out to a file. | |
| void | KI_TEST::DumpFootprintToFile (const FOOTPRINT &aFootprint, const std::string &aLibraryPath) |
| Same as DumpBoardToFile, but for footprints. | |
| std::unique_ptr< BOARD_ITEM > | KI_TEST::ReadBoardItemFromStream (std::istream &aStream) |
| Utility function to read a BOARD_ITEM (probably a FOOTPRINT or a BOARD) from a file. | |
| template<typename ITEM> | |
| std::unique_ptr< ITEM > | KI_TEST::ReadItemFromStream (std::istream &aStream) |
| Read a specific kind of BOARD_ITEM from a stream. | |
| std::unique_ptr< BOARD > | KI_TEST::ReadBoardFromFileOrStream (const std::string &aFilename, std::istream &aFallback=std::cin) |
| Read a board from a file, or another stream, as appropriate. | |
| std::unique_ptr< FOOTPRINT > | KI_TEST::ReadFootprintFromFileOrStream (const std::string &aFilename, std::istream &aFallback) |
General utilities for PCB file IO for QA programs.
Definition in file board_file_utils.h.