diff options
Diffstat (limited to 'src/inistream.h')
-rw-r--r-- | src/inistream.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/inistream.h b/src/inistream.h index 724c598..a9e2817 100644 --- a/src/inistream.h +++ b/src/inistream.h @@ -64,20 +64,21 @@ public: bool got_key(const char * keylabel); - /// check if the last read key=value pair matches keylabel and store the value in valuestring + /// check if the last read key=value pair matches keylabel and store the string value bool got_key_string(const char * keylabel, QString & valuestring); /// check if the last read key=value pair matches keylabel and store the value in x y and z bool got_key_vector3f(const char *keylabel, float &x, float &y, float &z); + /// check if the last read key=value pair matches keylabel and store the float value + bool got_key_float(const char * keylabel, float & f); + /* /// check if the last read key=value pair matches keylabel and store the value in valuestring, converted to label bool got_key_label(const char * keylabel, QString & labelstring); bool got_key_color(const char * keylabel, QColor & color); - bool got_key_float(const char * keylabel, float & f); - bool got_key_angle(const char * keylabel, float & f); bool got_key_long(const char * keylabel, long & l); |