File indexing completed on 2024-04-28 05:50:42

0001 /*
0002     This source file is part of Konsole, a terminal emulator.
0003 
0004     SPDX-FileCopyrightText: 2007-2008 Robert Knight <robertknight@gmail.com>
0005 
0006     SPDX-License-Identifier: GPL-2.0-or-later
0007 */
0008 
0009 #ifndef FALLBACKKEYBOARDTRANSLATOR_H
0010 #define FALLBACKKEYBOARDTRANSLATOR_H
0011 
0012 // Konsole
0013 #include "KeyboardTranslator.h"
0014 
0015 namespace Konsole
0016 {
0017 class FallbackKeyboardTranslator : public KeyboardTranslator
0018 {
0019 public:
0020     FallbackKeyboardTranslator();
0021 };
0022 
0023 }
0024 
0025 #endif