blob: ad79e017f908c071960c4eed452e71321ef72d1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* Copyright (c) 2020, Hüseyin Aslıtürk <asliturk@hotmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/JsonObject.h>
#include <LibKeyboard/CharacterMapData.h>
namespace Keyboard {
class CharacterMapFile {
public:
static ErrorOr<CharacterMapData> load_from_file(String const& filename);
private:
static Vector<u32> read_map(JsonObject const& json, String const& name);
};
}
|