You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
6 years ago
|
/* Kaleidoscope - Firmware for computer input devices
|
||
|
* Copyright (C) 2013-2018 Keyboard.io, Inc.
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify it under
|
||
|
* the terms of the GNU General Public License as published by the Free Software
|
||
|
* Foundation, version 3.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||
|
* details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License along with
|
||
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
7 years ago
|
#pragma once
|
||
|
|
||
|
#include "kaleidoscope/event_handler_result.h"
|
||
|
#include "kaleidoscope_internal/event_dispatch.h"
|
||
6 years ago
|
#include "kaleidoscope/event_handlers.h"
|
||
7 years ago
|
|
||
6 years ago
|
#if KALEIDOSCOPE_ENABLE_V1_PLUGIN_API
|
||
|
#error The V1 plugin API has been removed, please see UPGRADING.md.
|
||
7 years ago
|
#endif
|
||
|
|
||
|
namespace kaleidoscope {
|
||
|
|
||
6 years ago
|
class Plugin {
|
||
7 years ago
|
|
||
|
public:
|
||
6 years ago
|
// Please see "event_handlers.h" for a list of supported event handlers and
|
||
|
// their documentation!
|
||
7 years ago
|
};
|
||
|
|
||
|
} // namespace kaleidoscope
|