Started adding abbrev table stuff
[pyelftools.git] / elftools / dwarf / abbrevtable.py
1 #-------------------------------------------------------------------------------
2 # elftools: dwarf/abbrevtable.py
3 #
4 # DWARF abbreviation table
5 #
6 # Eli Bendersky (eliben@gmail.com)
7 # This code is in the public domain
8 #-------------------------------------------------------------------------------
9
10
11 class AbbrevTable(object):
12 def __init__(self, structs, stream):
13 self.structs = structs
14 self.stream = stream
15
16