forked from viewit/OrcaSlicer-KX
18 lines
255 B
C++
18 lines
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
|