]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/comment.hh
Merge pull request #8223 from PowerDNS/omoerbeek-patch-1
[thirdparty/pdns.git] / pdns / comment.hh
CommitLineData
6cc98ddf 1/*
12471842
PL
2 * This file is part of PowerDNS or dnsdist.
3 * Copyright -- PowerDNS.COM B.V. and its contributors
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * In addition, for the avoidance of any doubt, permission is granted to
10 * link this program with OpenSSL and to (re)distribute the binaries
11 * produced as the result of such linking.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
680f25f8
RK
22#ifndef PDNS_COMMENT_HH
23#define PDNS_COMMENT_HH
24
6cc98ddf
CH
25#include "utility.hh"
26#include "qtype.hh"
27#include <sys/types.h>
28
29class Comment
30{
31public:
7b781302 32 Comment() : modified_at(0), domain_id(0) {};
6cc98ddf
CH
33 ~Comment() {};
34
35 // data
25dcc05f 36 DNSName qname; //!< the name of the associated RRset, for example: www.powerdns.com
6cc98ddf
CH
37 time_t modified_at;
38 string account; //!< account last updating this comment
39 string content; //!< The actual comment. Example: blah blah
7b781302
PL
40
41 int domain_id;
42 QType qtype; //!< qtype of the associated RRset, ie A, CNAME, MX etc
6cc98ddf 43};
680f25f8
RK
44
45#endif /* PDNS_COMMENT_HH */