class Comment
{
public:
- Comment() : domain_id(0), modified_at(0) {};
+ Comment() : modified_at(0), domain_id(0) {};
~Comment() {};
// data
- int domain_id;
string qname; //!< the name of the associated RRset, for example: www.powerdns.com
- QType qtype; //!< qtype of the associated RRset, ie A, CNAME, MX etc
time_t modified_at;
string account; //!< account last updating this comment
string content; //!< The actual comment. Example: blah blah
+
+ int domain_id;
+ QType qtype; //!< qtype of the associated RRset, ie A, CNAME, MX etc
};
#endif /* PDNS_COMMENT_HH */