Files
create/src/App/ExportInfo.h
2025-12-25 11:55:37 -06:00

28 lines
563 B
C++

// SPDX-License-Identifier: LGPL-2.1-or-later
#ifndef SRC_APP_EXPORTINFO_H_
#define SRC_APP_EXPORTINFO_H_
#include "DocumentObject.h"
#include <string>
namespace App
{
/// Struct that holds information about the last
/// export so that the user does not have to reenter
/// them on each export. The export command either uses
/// the target document's export info
struct ExportInfo {
std::string location {};
std::string filename {};
std::string filter {};
bool generatedName {false};
App::DocumentObject* object {nullptr};
};
}
#endif