#ifndef UTILS_HPP #define UTILS_HPP #include #include /// Utility functions that aren't necessarily part of libslic3r but are used by it. /// Separate a string based on some regular expression string. std::vector split_at_regex(const std::string& input, const std::string& regex); std::string trim_zeroes(std::string in); #endif // UTILS_HPP