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.
 
 
 
 
 

17 lines
544 B

#ifndef SAVE_PROJECT_UTILS_H
#define SAVE_PROJECT_UTILS_H
#include <unordered_map>
#include <wx/filename.h>
class SCHEMATIC;
class SCH_SCREEN;
class SCH_SCREENS;
bool PrepareSaveAsFiles( SCHEMATIC& aSchematic, SCH_SCREENS& aScreens,
const wxFileName& aOldRoot, const wxFileName& aNewRoot,
bool aSaveCopy, bool aCopySubsheets, bool aIncludeExternSheets,
std::unordered_map<SCH_SCREEN*, wxString>& aFilenameMap,
wxString& aErrorMsg );
#endif