~ubuntu-branches/ubuntu/maverick/telepathy-glib/maverick

« back to all changes in this revision

Viewing changes to telepathy-glib/intset.h

  • Committer: Bazaar Package Importer
  • Author(s): Simon McVittie
  • Date: 2010-05-25 16:57:39 UTC
  • mfrom: (1.6.2 upstream) (30.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100525165739-kted5mhm904f8lwj
Tags: 0.11.6-1
* New upstream version
  - requires gtk-doc 1.15
  - requires gobject-introspection 0.6.11
  - new ABI, API
* Merge from experimental
  - add gir1.0-telepathyglib-0.12 binary package

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
GArray *tp_intset_to_array (const TpIntSet *set) G_GNUC_WARN_UNUSED_RESULT;
51
51
TpIntSet *tp_intset_from_array (const GArray *array) G_GNUC_WARN_UNUSED_RESULT;
52
52
 
 
53
gboolean tp_intset_is_empty (const TpIntSet *set) G_GNUC_WARN_UNUSED_RESULT;
53
54
guint tp_intset_size (const TpIntSet *set) G_GNUC_WARN_UNUSED_RESULT;
54
55
 
55
56
gboolean tp_intset_is_equal (const TpIntSet *left, const TpIntSet *right)
97
98
 
98
99
gboolean tp_intset_iter_next (TpIntSetIter *iter);
99
100
 
 
101
typedef struct {
 
102
    /*<private>*/
 
103
    gpointer _dummy[16];
 
104
} TpIntSetFastIter;
 
105
 
 
106
void tp_intset_fast_iter_init (TpIntSetFastIter *iter,
 
107
    const TpIntSet *set);
 
108
 
 
109
gboolean tp_intset_fast_iter_next (TpIntSetFastIter *iter,
 
110
    guint *output);
 
111
 
100
112
G_END_DECLS
101
113
 
102
114
#endif /*__TP_INTSET_H__*/