1 /* 2 This file is part of the Okteta Kasten module, made within the KDE community. 3 4 SPDX-FileCopyrightText: 2006 Friedrich W. H. Kossebau <kossebau@kde.org> 5 6 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 7 */ 8 9 #ifndef KASTEN_FINDDIRECTION_HPP 10 #define KASTEN_FINDDIRECTION_HPP 11 12 namespace Kasten { 13 14 enum FindDirection 15 { 16 FindForward = 0, 17 FindBackward = 1 18 }; 19 20 } 21 22 #endif 23