| 1 | /* |
|---|---|
| 2 | This file is part of the syndication library |
| 3 | SPDX-FileCopyrightText: 2006 Frank Osterfeld <osterfeld@kde.org> |
| 4 | |
| 5 | SPDX-License-Identifier: LGPL-2.0-or-later |
| 6 | */ |
| 7 | |
| 8 | #include "node.h" |
| 9 | #include "nodevisitor.h" |
| 10 | |
| 11 | namespace Syndication |
| 12 | { |
| 13 | namespace RDF |
| 14 | { |
| 15 | unsigned int Node::idCounter = 1; |
| 16 | |
| 17 | void Node::accept(NodeVisitor *visitor, NodePtr ptr) |
| 18 | { |
| 19 | visitor->visitNode(node: ptr); |
| 20 | } |
| 21 | |
| 22 | Node::~Node() |
| 23 | { |
| 24 | } |
| 25 | |
| 26 | } // namespace RDF |
| 27 | } // namespace Syndication |
| 28 |
