class Covered::Filter

def accept?(path)

def accept?(path)
	match?(path) and super
end

def each(&block)

Other tags:
    Yield: - the path to the file, and the execution counts.
def each(&block)
	@output.each do |coverage|
		yield coverage if accept?(coverage.path)
	end
end

def mark(path, lineno, value)

def mark(path, lineno, value)
	@output.mark(path, lineno, value) if accept?(path)
end

def match?(path)

def match?(path)
	true
end