Skip to content

Commit

Permalink
Add relative attribute types
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph2 committed Jan 11, 2019
1 parent f9ba3a3 commit 3456e31
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions pydbc/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__copyright__ = """
pySART - Simplified AUTOSAR-Toolkit for Python.
(C) 2010-2018 by Christoph Schueler <cpu12.gems.googlemail.com>
(C) 2010-2019 by Christoph Schueler <cpu12.gems.googlemail.com>
All Rights Reserved
Expand Down Expand Up @@ -37,11 +37,14 @@ class VndbType(enum.IntEnum):


class AttributeType(enum.IntEnum):
NODE = 0
MESSAGE = 1
SIGNAL = 2
ENV_VAR = 3
NETWORK = 4
NODE = 0
MESSAGE = 1
SIGNAL = 2
ENV_VAR = 3
NETWORK = 4
REL_NODE = 5
REL_SIGNAL = 6
REL_ENV_VAR = 7


class ValueType(enum.IntEnum):
Expand Down

0 comments on commit 3456e31

Please sign in to comment.