[Dist/Debian] Prepare for GCC >= 10
[platform/upstream/dldt.git] / tools / utils / edge.py
1 """
2 Copyright (C) 2018-2019 Intel Corporation
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
17
18 class Edge:
19     def __init__(self, data: dict):
20         self._from_layer = int(data['from-layer'])
21         self._from_port = int(data['from-port'])
22         self._to_layer = int(data['to-layer'])
23         self._to_port = int(data['to-port'])
24
25     @property
26     def from_layer(self) -> int:
27         return self._from_layer
28
29     @property
30     def from_port(self) -> int:
31         return self._from_port
32
33     @property
34     def to_layer(self) -> int:
35         return self._to_layer
36
37     @property
38     def to_port(self) -> int:
39         return self._to_port