1/*
2 * Copyright 2017, Data61, CSIRO (ABN 41 687 119 230)
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7import "../../interfaces/Display.idl4";
8
9component Client {
10  control;
11  uses Display d;
12
13  /* Message to write to our region on startup. */
14  attribute string MESSAGE;
15
16  /* Our client identifier. */
17  attribute int ID;
18}
19
20