diff options
author | Philip Withnall <philip@tecnocode.co.uk> | 2009-04-16 15:40:53 +0100 |
---|---|---|
committer | Philip Withnall <philip@tecnocode.co.uk> | 2009-04-16 15:40:53 +0100 |
commit | 008e022c0307be0b1e1833266a8a5480c2f979d1 (patch) | |
tree | 274466a293056e3ac553f1db48ac9352294cd345 /gdata/gdata-feed.h | |
parent | 290b92c174680472ca75eb07f7fb84902b3248fd (diff) | |
download | libgdata-008e022c0307be0b1e1833266a8a5480c2f979d1.tar.gz |
Bug 578661 – ETag support
Add support for ETags, to allow for versioning when querying, updating and deleting entries. This involved adding new API to GDataQuery to allow the
required ETag to be set for queries, as well as new properties in GDataEntry and GDataFeed for the ETags.
Diffstat (limited to 'gdata/gdata-feed.h')
-rw-r--r-- | gdata/gdata-feed.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdata/gdata-feed.h b/gdata/gdata-feed.h index f19a82ca..5e60fa2b 100644 --- a/gdata/gdata-feed.h +++ b/gdata/gdata-feed.h @@ -70,6 +70,7 @@ GList *gdata_feed_get_authors (GDataFeed *self); const gchar *gdata_feed_get_title (GDataFeed *self); const gchar *gdata_feed_get_subtitle (GDataFeed *self); const gchar *gdata_feed_get_id (GDataFeed *self); +const gchar *gdata_feed_get_etag (GDataFeed *self); void gdata_feed_get_updated (GDataFeed *self, GTimeVal *updated); const gchar *gdata_feed_get_logo (GDataFeed *self); GDataGenerator *gdata_feed_get_generator (GDataFeed *self); |