class PDF::Reader::Filter

def initialize (name, options)

creates a new filter for decoding content
###############################################################################
def initialize (name, options)
  @options = options
  case name
  when "FlateDecode"    then @filter = :flate
  #else                    raise UnsupportedFeatureError, "Unknown filter: #{name}"
  end
end