File indexing completed on 2024-04-21 16:12:57

0001 /*
0002     SPDX-License-Identifier: GPL-2.0-only
0003     SPDX-FileCopyrightText: 1999-2001 Lubos Lunak <l.lunak@kde.org>
0004  */
0005 
0006 #ifndef KHOTKEYS_INPUT_H
0007 #define KHOTKEYS_INPUT_H
0008 
0009 namespace KHotKeys
0010 {
0011 class Mouse
0012 {
0013 public:
0014     static bool send_mouse_button(int button_P, bool release_P);
0015 };
0016 
0017 } // namespace KHotKeys
0018 
0019 #endif