Lines Matching defs:Key
15 typedef std::pair<std::string, double> Key;40 void read_keys(std::istream *input, std::vector<Key> *keys) {41 Key key;47 key.second = std::strtod(&line[delim_pos + 1], &end_of_value);51 key.second = 1.0;54 key.second = 1.0;56 key.first = line;57 keys->push_back(key);62 std::vector<Key> keys;