mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-09-02 00:52:24 +02:00
25 lines
355 B
C++
25 lines
355 B
C++
#ifndef slic3r_PlaceholderParser_hpp_
|
|||
|
|
#define slic3r_PlaceholderParser_hpp_
|
||
|
|
|
||
|
|
|
||
|
|
#include <myinit.h>
|
||
|
|
#include <map>
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
|
||
|
|
namespace Slic3r {
|
||
|
|
|
||
|
|
class PlaceholderParser
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
std::map<std::string, std::string> _single;
|
||
|
|
std::map<std::string, std::string> _multiple;
|
||
|
|
|
||
|
|
PlaceholderParser();
|
||
|
|
~PlaceholderParser();
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|