class ReeRoda::BuildRoutingTree::RoutingTree

def initialize(values, depth, type, parent = nil, routes = [])

def initialize(values, depth, type, parent = nil, routes = [])
  @values = values
  @depth = depth
  @parent = parent
  @type = type
  @routes = []
  @children = []
end