FIX: Fix missing std:: declarations

In file included from /run/build/BambuStudio/src/slic3r/GUI/DeviceCore/DevPrintTaskInfo.cpp:1:
src/slic3r/GUI/DeviceCore/DevPrintTaskInfo.h:15:10: error: ‘string’ in namespace ‘std’ does not name a type
   15 |     std::string content;
      |          ^~~~~~
src/slic3r/GUI/DeviceCore/DevPrintTaskInfo.h:16:10: error: ‘vector’ in namespace ‘std’ does not name a template type
   16 |     std::vector<std::string>  image_url_paths;
      |          ^~~~~~

(cherry picked from commit 1e0ae7d3f8b47d1f8c1bb6b05be54d627bcc95f0)
This commit is contained in:
Bastien Nocera 2025-08-12 21:04:25 +02:00 committed by Noisyfox
parent 2e47d7315e
commit 4394527a5c

View file

@ -1,5 +1,8 @@
#pragma once
#include <string>
#include <vector>
// TODO classes to handle dev print task management and ratings
namespace Slic3r