Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PlaceholderParser.hpp « src « xs - github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e69d6ed93267a330632a21cd0c4fe0af5af684a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef slic3r_PlaceholderParser_hpp_
#define slic3r_PlaceholderParser_hpp_


#include <myinit.h>
#include <map>
#include <string>
#include "PrintConfig.hpp"


namespace Slic3r {

class PlaceholderParser
{
    public:
    std::map<std::string, std::string> _single;
    std::map<std::string, std::string> _multiple;

    PlaceholderParser();
    ~PlaceholderParser();

    void apply_config(DynamicPrintConfig &config);

    private:
    template<class T>
    void set_multiple_from_vector(
        const std::string &key, ConfigOptionVector<T> &opt);
};

}

#endif