Core: Remember export information on a per document basis (#22067)
* Use a new struct ExportInfo to hold export information on a per document basis
This commit is contained in:
@@ -1189,6 +1189,14 @@ Document::ExportStatus Document::isExporting(const DocumentObject* obj) const
|
||||
}
|
||||
return Document::NotExporting;
|
||||
}
|
||||
ExportInfo Document::exportInfo() const
|
||||
{
|
||||
return d->exportInfo;
|
||||
}
|
||||
void Document::setExportInfo(const ExportInfo& info)
|
||||
{
|
||||
d->exportInfo = info;
|
||||
}
|
||||
|
||||
void Document::exportObjects(const std::vector<DocumentObject*>& obj, std::ostream& out)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user