Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2012-02-19 11:54:26 +0000
committerStijn Buys <ingar@osirion.org>2012-02-19 11:54:26 +0000
commit96f17eaf3a1f66d7eefd66e51e2137ea404459f4 (patch)
tree4e85c02171ce0e90975bb690e19d44c00975e642 /src/inistream.h
parentf7530ccf9ce71efcb00cda56ee9d71e7765e6f79 (diff)
Read entity properties, added entity selection and scaling.
Diffstat (limited to 'src/inistream.h')
-rw-r--r--src/inistream.h7
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);