add initial broken implementations of list macros

This commit is contained in:
jacekpoz 2024-04-21 10:41:03 +02:00
parent becc44a098
commit a824c09cee
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -245,17 +245,37 @@ inline void toLower(std::string &str) {
#define VAR_LIST(section, name, type) \
VAR_GENERIC(section, name,\
std::string val = checkAndRemove(line, _prefix);\
std::vector<type> value;\
std::stringstream ss(line);\
type val;\
while (ss >> val) {\
std::getline(configFile, line);\
}\
)
#define VAR_LIST_SEP(section, name, type, sep) \
VAR_GENERIC(section, name,\
std::string val = checkAndRemove(line, _prefix);\
std::vector<type> value;\
std::stringstream ss(line);\
std::string val;\
type type_val;\
while (std::stringstream(val) >> type_val) {\
std::getline(ss, val, ',');\
}\
)
#define VAR_LIST_SEP_P(section, name, type, sep, prefix) \
VAR_GENERIC_P(section, name,\
_prefix = prefix;\
line = checkAndRemove(line, _prefix);\
std::vector<type> value;\
std::stringstream ss(line);\
std::string val;\
type type_val;\
while (std::stringstream(val) >> type_val) {\
std::getline(ss, val, ',');\
}\
)
#define VAR_LIST_NUMBERED(section, name, type) \
VAR_GENERIC(section, name,\
std::string val = checkAndRemove(line, _prefix);\
std::vector<type> value;\
)