class RubyProf::MultiPrinter

def print(options)

profile file, defaults to "profile".
directory. options[:profile] is used as the base name for the
create profile files under options[:path] or the current
def print(options)
  validate_print_params(options)
  @file_name = options.delete(:profile) || "profile"
  @directory = options.delete(:path) || File.expand_path(".")
  print_to_flat(options) if @flat_printer
  print_to_graph(options) if @graph_printer
  print_to_graph_html(options) if @graph_html_printer
  print_to_stack(options) if @stack_printer
  print_to_call_info(options) if @call_info_printer
  print_to_tree(options) if @tree_printer
  print_to_dot(options) if @dot_printer
end