PrusaSlicer-NonPlainar/xs/src/libslic3r/PlaceholderParser.hpp

32 lines
677 B
C++
Raw Normal View History

#ifndef slic3r_PlaceholderParser_hpp_
#define slic3r_PlaceholderParser_hpp_
#include <myinit.h>
#include <map>
#include <string>
2015-05-02 19:43:22 +00:00
#include <vector>
#include "PrintConfig.hpp"
namespace Slic3r {
class PlaceholderParser
{
public:
std::map<std::string, std::string> _single;
std::map<std::string, std::string> _multiple;
PlaceholderParser();
void update_timestamp();
void apply_config(DynamicPrintConfig &config);
void apply_env_variables();
void set(const std::string &key, const std::string &value);
2015-05-02 19:43:22 +00:00
void set(const std::string &key, int value);
void set(const std::string &key, const std::vector<std::string> &values);
};
}
#endif