File indexing completed on 2024-04-28 05:11:03

0001 /*
0002     This file is part of Akregator.
0003 
0004     SPDX-FileCopyrightText: 2005 Frank Osterfeld <osterfeld@kde.org>
0005 
0006     SPDX-License-Identifier: GPL-2.0-or-later WITH Qt-Commercial-exception-1.0
0007 */
0008 
0009 #include "treenodevisitor.h"
0010 #include "treenode.h"
0011 
0012 using namespace Akregator;
0013 bool TreeNodeVisitor::visit(TreeNode *node)
0014 {
0015     return node->accept(this);
0016 }