libslic3r: Fix Model declaration

src/libslic3r/Format/STEP.hpp:39:41: error: ‘Model’ has not been declared
   39 | extern bool load_step(const char *path, Model *model,
      |                                         ^~~~~
This commit is contained in:
Bastien Nocera 2024-10-16 17:24:19 +02:00 committed by Lane.Wei
parent 3547728ded
commit 9562692bc6
1 changed files with 1 additions and 0 deletions

View File

@ -12,6 +12,7 @@ namespace fs = boost::filesystem;
namespace Slic3r {
class Model;
class TriangleMesh;
class ModelObject;