sig
  class c :
    ?name:string ->
    ?mime_type:string ->
    ?uri:Rdf.Uri.c ->
    unit ->
    object
      method get_feature : Rdf.Uri.c -> Rdf.Node.c
      method is_valid : bool
      method namespaces_seen : (string * Rdf.Uri.c) list
      method parse_as_stream :
        ?base_uri:Rdf.Uri.c -> Rdf.Uri.c -> Rdf.Stream.c
      method parse_into_model :
        ?base_uri:Rdf.Uri.c -> Rdf.Uri.c -> Rdf.Model.c -> unit
      method parse_string_as_stream :
        ?base_uri:Rdf.Uri.c -> string -> Rdf.Stream.c
      method parse_string_into_model :
        ?base_uri:Rdf.Uri.c -> string -> Rdf.Model.c -> unit
      method repr : Rdf.repr
      method set_feature : Rdf.Uri.c -> Rdf.Node.c -> unit
    end
end