OSDN Git Service

Rename boardmanager.cpp and boardmanager.h
[kita/kita.git] / kita / src / libkita / parser.h
1 /***************************************************************************
2  *   Copyright (C) 2009 by Kita Developers                                 *
3  *   ikemo@users.sourceforge.jp                                            *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  ***************************************************************************/
10 #ifndef PARSER_H
11 #define PARSER_H
12
13 class QString;
14
15 class RESDAT;
16
17 namespace Kita {
18     namespace Parser {
19         bool parseResDat(RESDAT& resdat, QString& subject);
20         void datToText(const QString &rawData, QString& text);
21     }
22 }
23
24 #endif