sig
  class cookie :
    name:string ->
    value:string ->
    max_age:int option ->
    domain:string ->
    path:string ->
    secure:bool ->
    object
      method domain : string
      method max_age : int option
      method name : string
      method path : string
      method secure : bool
      method set_domain : string -> unit
      method set_max_age : int option -> unit
      method set_name : string -> unit
      method set_path : string -> unit
      method set_secure : bool -> unit
      method set_value : string -> unit
      method to_string : string
      method value : string
    end
  val cookie :
    ?max_age:int ->
    ?domain:string ->
    ?path:string -> ?secure:bool -> string -> string -> CamlGI.Cookie.cookie
  val parse : string -> CamlGI.Cookie.cookie list
end