# File lib/more/facets/ostructable.rb, line 61
  def initialize(hash=nil)
    @__table__ = {}
    if hash
      for k,v in hash
        @__table__[k.to_sym] = v
        new_ostruct_member(k)
      end
    end
  end