mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-28 15:02:02 +08:00
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
|