src/LDConfig.h

changeset 690
9e9c52ca955e
parent 642
751a8df42842
equal deleted inserted replaced
689:397870c6ed38 690:9e9c52ca955e
14 * 14 *
15 * You should have received a copy of the GNU General Public License 15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */ 17 */
18 18
19 #ifndef LDFORGE_LDCONFIG_H 19 #pragma once
20 #define LDFORGE_LDCONFIG_H
21
22 #include "Types.h" 20 #include "Types.h"
23 #include <QStringList> 21 #include <QStringList>
24 22
25 // ============================================================================= 23 // ============================================================================
26 // LDConfigParser
27 // 24 //
28 // String parsing utility for parsing ldconfig.ldr 25 // String parsing utility for parsing ldconfig.ldr
29 // ============================================================================= 26 //
30 class LDConfigParser 27 class LDConfigParser
31 { 28 {
32 public: 29 public:
33 LDConfigParser (QString inText, char sep); 30 LDConfigParser (QString inText, char sep);
34 31
52 QStringList m_tokens; 49 QStringList m_tokens;
53 int m_pos; 50 int m_pos;
54 }; 51 };
55 52
56 void parseLDConfig(); 53 void parseLDConfig();
57
58 #endif // LDFORGE_LDCONFIG_H

mercurial