blob: 0843ca54afce4d640b3bffdb78d1b305ce7c7898 (
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(DeprecatedString const& filename);
private:
static Vector<u32> read_map(JsonObject const& json, DeprecatedString const& name);
};
}
|