[go: nahoru, domu]

Skip to content

Commit

Permalink
Merge pull request cantools#179 from geo4711/long_sym_names
Browse files Browse the repository at this point in the history
Lots of changes.
  • Loading branch information
eerimoq authored Jan 5, 2020
2 parents f606ce7 + f2e4de2 commit 4a249e9
Show file tree
Hide file tree
Showing 7 changed files with 500 additions and 42 deletions.
8 changes: 8 additions & 0 deletions cantools/database/can/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ def version(self):

return self._version

@version.setter
def version(self, value):
self._version = value

@property
def dbc(self):
"""An object containing dbc specific properties like e.g. attributes.
Expand All @@ -92,6 +96,10 @@ def dbc(self):

return self._dbc

@dbc.setter
def dbc(self, value):
self._dbc = value

def add_arxml(self, fp):
"""Read and parse ARXML data from given file-like object and add the
parsed data to the database.
Expand Down
Loading

0 comments on commit 4a249e9

Please sign in to comment.