root/trunk/pdns/pdns/zoneparser-tng.hh @ 778

Revision 778, 1.2 KB (checked in by ahu, 7 years ago)

make the zoneparser tng no longer suck

Line 
1/*
2    PowerDNS Versatile Database Driven Nameserver
3    Copyright (C) 2005 - 2006 PowerDNS.COM BV
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 version 2
7    as published by the Free Software Foundation
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17*/
18
19#ifndef PDNS_ZONEPARSER_TNG
20#define PDNS_ZONEPARSER_TNG
21#include <string>
22#include <cstdio>
23#include <stdexcept>
24
25using namespace std;
26
27class ZoneParserTNG
28{
29public:
30  ZoneParserTNG(const string& fname, const string& zname="");
31
32  ~ZoneParserTNG();
33
34  bool get(DNSResourceRecord& rr);
35  typedef runtime_error exception;
36private:
37  bool getLine();
38
39  FILE *d_fp;
40  string d_line;
41  string d_prevqname;
42  string d_zonename;
43  int d_defaultttl;
44};
45
46#endif
Note: See TracBrowser for help on using the browser.