# File femto.rb, line 271
  def dump()
    @store.transaction(true) do
      @store.roots.each do |section|
        puts "[" + section + "]"
        @store[section].each do |key, item|
          puts "Item(#{key}): " + item.header + ", " + item.description
        end
      end
    end
  end