Functor GdataComments.Make

module Make: 
functor (Link : GdataAtom.AtomData) -> Comments with type link_t = Link.t
Parameters:
Link : GdataAtom.AtomData

type link_t 
module Entry: sig .. end
module Feed: GdataAtom.Feed 
      with type entry_t = Entry.t
        and type link_t = link_t
type t = {
   countHint : int;
   href : string;
   readOnly : bool;
   rel : string;
   commentFeed : Feed.t;
}
val empty : t
val of_xml_data_model : t ->
GdataCore.xml_data_model -> t
val to_xml_data_model : t -> GdataCore.xml_data_model list
val parse_comment_entry : GdataCore.xml_data_model -> Entry.t
val comment_entry_to_data_model : Entry.t -> GdataCore.xml_data_model