Added xml escape characters detection when exporting object and volumes names to 3mf files

This commit is contained in:
Enrico Turri 2018-07-23 14:39:50 +02:00
parent de085fdb6c
commit 1c6d3c9c69
4 changed files with 32 additions and 29 deletions

View file

@ -84,6 +84,8 @@ inline T next_highest_power_of_2(T v)
return ++ v;
}
extern std::string xml_escape(std::string text);
class PerlCallback {
public:
PerlCallback(void *sv) : m_callback(nullptr) { this->register_callback(sv); }