]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/zoneparser-tng.hh
add isCanonical and toCanonic
[thirdparty/pdns.git] / pdns / zoneparser-tng.hh
CommitLineData
f814d7c8
BH
1/*
2 PowerDNS Versatile Database Driven Nameserver
3 Copyright (C) 2005 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
06bd9ccf 16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
f814d7c8
BH
17*/
18
19#ifndef PDNS_ZONEPARSER_TNG
20#define PDNS_ZONEPARSER_TNG
21#include <string>
22#include <cstdio>
23using namespace std;
24
25// The API is fine, the implementation still sucks
26class ZoneParserTNG
27{
28public:
29 ZoneParserTNG(const string& fname);
30
31 ~ZoneParserTNG();
32
33 bool get(DNSResourceRecord& rr);
34
35private:
36 FILE *d_fp;
37 string d_line;
38 bool getLine();
39};
40
41#endif