Generate feed with many entries
[cascardo/atompub.git] / include / atompub / feed.h
index 1a92f0f..3e18759 100644 (file)
 #define ATOMPUB_FEED_H
 
 #include <atompub/ctx.h>
+#include <atompub/entry.h>
 
 typedef struct _atom_feed AtomFeed;
 
+AtomFeed * atom_feed_new (void);
+void atom_feed_delete (AtomFeed *);
+void atom_feed_entry_append (AtomFeed *, AtomEntry *);
+void atom_feed_entry_append_array (AtomFeed *, AtomEntry **, size_t);
+
 #endif