class BinData::Base

def read(io)

created data object.
Instantiates this class and reads from +io+, returning the newly
def read(io)
  obj = self.new
  obj.read(io)
  obj
end