OrcaSlicer/src/libslic3r/SLAPrint.cpp
bubnikv bbfbe88a5f Integrated SLAPrint into background processing.
Fixed couple of compiler warnings.
2018-11-08 20:18:40 +01:00

18 lines
No EOL
255 B
C++

#include "SLAPrint.hpp"
namespace Slic3r {
void SLAPrint::clear()
{
}
SLAPrint::ApplyStatus SLAPrint::apply(const Model &model, const DynamicPrintConfig &config)
{
return APPLY_STATUS_INVALIDATED;
}
void SLAPrint::process()
{
}
} // namespace Slic3r