File indexing completed on 2024-04-28 16:44:53

0001 /* SPDX-FileCopyrightText: 2009 Michael Jansen <kde@michael-jansen.biz>
0002    SPDX-FileCopyrightText: 1999-2001 Lubos Lunak <l.lunak@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-only
0005 */
0006 
0007 #include "conditions/conditions_visitor.h"
0008 #include "conditions/conditions_list_base.h"
0009 
0010 namespace KHotKeys
0011 {
0012 ConditionsVisitor::ConditionsVisitor(bool recurse)
0013     : _recurse(recurse)
0014 {
0015 }
0016 
0017 ConditionsVisitor::~ConditionsVisitor()
0018 {
0019 }
0020 
0021 } // namespace KHotKeys