mirror of https://gitee.com/openkylin/fcitx5.git
17 lines
339 B
C++
17 lines
339 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2016-2016 CSSlayer <wengxt@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include "im/keyboard/xkbrules.h"
|
|
|
|
int main() {
|
|
fcitx::XkbRules xkbRules;
|
|
xkbRules.read(XKEYBOARDCONFIG_XKBBASE "/rules/" DEFAULT_XKB_RULES ".xml");
|
|
xkbRules.dump();
|
|
return 0;
|
|
}
|