src/ldconfig.cpp

changeset 496
d6cbf21af8fb
parent 493
16766ac1bbd9
child 498
791c831c8020
equal deleted inserted replaced
495:cb931c2d1e8b 496:d6cbf21af8fb
111 } 111 }
112 112
113 // ============================================================================= 113 // =============================================================================
114 // ----------------------------------------------------------------------------- 114 // -----------------------------------------------------------------------------
115 LDConfigParser::LDConfigParser (str inText, char sep) 115 LDConfigParser::LDConfigParser (str inText, char sep)
116 { m_tokens = container_cast<QStringList, List<str>> (inText.split (sep, QString::SkipEmptyParts)); 116 { m_tokens = inText.split (sep, QString::SkipEmptyParts);
117 m_pos = -1; 117 m_pos = -1;
118 } 118 }
119 119
120 // ============================================================================= 120 // =============================================================================
121 // ----------------------------------------------------------------------------- 121 // -----------------------------------------------------------------------------
124 } 124 }
125 125
126 // ============================================================================= 126 // =============================================================================
127 // ----------------------------------------------------------------------------- 127 // -----------------------------------------------------------------------------
128 bool LDConfigParser::atEnd() 128 bool LDConfigParser::atEnd()
129 { return (m_pos == (signed) m_tokens.size() - 1); 129 { return (m_pos == m_tokens.size() - 1);
130 } 130 }
131 131
132 // ============================================================================= 132 // =============================================================================
133 // ----------------------------------------------------------------------------- 133 // -----------------------------------------------------------------------------
134 bool LDConfigParser::getToken (str& val, const ushort pos) 134 bool LDConfigParser::getToken (str& val, const ushort pos)

mercurial