You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.6 KiB

  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2022 KiCad Developers, see AUTHORS.TXT for contributors.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version 3
  9. * of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, you may find one at
  18. * http://www.gnu.org/licenses/
  19. */
  20. #ifndef QA_QA_UTILS_SCHEMATIC_SCHEMATIC_FILE_UTIL_H_
  21. #define QA_QA_UTILS_SCHEMATIC_SCHEMATIC_FILE_UTIL_H_
  22. #include <string>
  23. #include <memory>
  24. class PROJECT;
  25. class SCH_SHEET;
  26. class SCHEMATIC;
  27. class SETTINGS_MANAGER;
  28. class wxString;
  29. namespace KI_TEST
  30. {
  31. void DumpSchematicToFile( SCHEMATIC& aSchematic, SCH_SHEET& aSheet,
  32. const std::string& aFilename );
  33. std::unique_ptr<SCHEMATIC> ReadSchematicFromStream( std::istream& aStream, PROJECT* aProject );
  34. std::unique_ptr<SCHEMATIC> ReadSchematicFromFile( const std::string& aFilename,
  35. PROJECT* aProject );
  36. void LoadSchematic( SETTINGS_MANAGER& aSettingsManager, const wxString& aRelPath,
  37. std::unique_ptr<SCHEMATIC>& aSchematic );
  38. }
  39. #endif /* QA_QA_UTILS_SCHEMATIC_SCHEMATIC_FILE_UTIL_H_ */