Removed Table() class

I don't know why this wasn't removed earlier.  It hasn't been used since
Ocarina 4.0
This commit is contained in:
Bryan Schumaker 2010-11-15 21:12:37 -05:00
parent 40597b9cb3
commit 971238ddf2
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
# Bryan Schumaker (8/8/2010)
class Table(dict):
def __init__(self):
dict.__init__(self)
self.next_id = 0
def insert(self, tags):
id = self.next_id
self[id] = tags
self.next_id += 1
return id