note description: "[ Represent tables that can appear in a PE file ]" author: "" date: "$Date$" revision: "$Revision$" class DNL_TABLE create make feature {NONE} -- Initialization make (a_size: INTEGER) do create {ARRAYED_LIST [TABLE_ENTRY_BASE]} table.make (a_size) end feature -- Access table: LIST [TABLE_ENTRY_BASE] -- vector of tables that can appear in a PE file -- empty tables are elided / pass over? end