mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 18:12:10 +00:00
Move Print object storage to C++. (along with its subobjects)
This commit is contained in:
25
xs/src/PlaceholderParser.cpp
Normal file
25
xs/src/PlaceholderParser.cpp
Normal file
@@ -0,0 +1,25 @@
|
||||
#include "PlaceholderParser.hpp"
|
||||
#ifdef SLIC3RXS
|
||||
#include "perlglue.hpp"
|
||||
#endif
|
||||
|
||||
|
||||
namespace Slic3r {
|
||||
|
||||
|
||||
PlaceholderParser::PlaceholderParser()
|
||||
{
|
||||
// TODO: port these methods to C++, then call them here
|
||||
// this->apply_env_variables();
|
||||
// this->update_timestamp();
|
||||
}
|
||||
|
||||
PlaceholderParser::~PlaceholderParser()
|
||||
{
|
||||
}
|
||||
|
||||
#ifdef SLIC3RXS
|
||||
REGISTER_CLASS(PlaceholderParser, "GCode::PlaceholderParser");
|
||||
#endif
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user