blob: 2d308be1bd04e5f9f995419b1d7c63b6fbd78fa1 [file] [log] [blame]
Jorge E. Moreira4750e542020-01-07 14:35:35 -08001/*
2 * Copyright (C) 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jorge E. Moreiraa18ff1a2019-12-17 18:20:56 -080017#pragma once
18
Jorge E. Moreira2a6ab082019-12-11 18:41:58 -080019#include <cinttypes>
20#include <memory>
Jorge E. Moreiraa18ff1a2019-12-17 18:20:56 -080021
22namespace android {
23
Jorge E. Moreira2a6ab082019-12-11 18:41:58 -080024// TODO(jemoreira): add support for multitouch
25struct InputEvent{
26 InputEvent(int32_t down, int32_t x, int32_t y) : down(down), x(x), y(y) {}
27 int32_t down;
28 int32_t x;
29 int32_t y;
30};
31
Jorge E. Moreiraa18ff1a2019-12-17 18:20:56 -080032struct StreamingSink {
33 explicit StreamingSink() = default;
34 virtual ~StreamingSink() = default;
35
Jorge E. Moreira2a6ab082019-12-11 18:41:58 -080036 virtual void onAccessUnit(const std::shared_ptr<InputEvent> &accessUnit) = 0;
Jorge E. Moreiraa18ff1a2019-12-17 18:20:56 -080037};
38
39} // namespace android
40