ip2cparser.h
1 //------------------------------------------------------------------------------
2 // ip2cparser.h
3 //------------------------------------------------------------------------------
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // Lesser General Public License for more details.
14 //
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 // 02110-1301 USA
19 //
20 //------------------------------------------------------------------------------
21 // Copyright (C) 2009 Braden "Blzut3" Obrzut <admin@maniacsvault.net>
22 //------------------------------------------------------------------------------
23 #ifndef __IP2CPARSER_H__
24 #define __IP2CPARSER_H__
25 
26 #include "ip2crange.h"
27 
28 #include <QIODevice>
29 #include <QList>
30 #include <QMap>
31 #include <QString>
32 
39 {
40  friend class IP2CParserV2;
41  friend class IP2CParserV3;
42 
43 public:
44  const QList<IP2CRange> ranges() const
45  {
46  return ranges_;
47  }
48 
49  const QMap<QString, QString> licences() const
50  {
51  return licences_;
52  }
53 
54  const QString url() const
55  {
56  return url_;
57  }
58 
59  bool parse(QIODevice &dataBase);
60 
61 private:
62  QList<IP2CRange> ranges_;
63  QMap<QString, QString> licences_;
64  QString url_;
65 };
66 
67 #endif