~ubuntu-branches/ubuntu/feisty/gossip-telepathy/feisty

« back to all changes in this revision

Viewing changes to libgossip/gossip-chatroom-contact.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2006-12-20 15:09:43 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20061220150943-01hnkptgzfvw5d6e
Tags: 0.21~cvs20061220-0ubuntu1
* New CVS checkout.
* debian/control: Build-Depend on libtelepathy-dev (>= 0.0.40-0ubuntu2).

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
        GossipContactClass parent_class;
45
45
};
46
46
 
47
 
GType                   gossip_chatroom_contact_get_type (void) G_GNUC_CONST;
48
 
 
49
 
GossipChatroomContact * gossip_chatroom_contact_new      (GossipAccount  *account);
50
 
 
51
 
GossipChatroomContact * gossip_chatroom_contact_new_full (GossipAccount  *account,
52
 
                                                          const gchar    *id,
53
 
                                                          const gchar    *name);
54
 
GossipChatroomRole      gossip_chatroom_contact_get_role (GossipChatroomContact *contact);
55
 
void                    gossip_chatroom_contact_set_role (GossipChatroomContact *contact,
56
 
                                                          GossipChatroomRole     role);
57
 
 
58
 
GossipChatroomAffiliation gossip_chatroom_contact_get_affiliation (GossipChatroomContact *contact);
59
 
void                    gossip_chatroom_contact_set_affiliation (GossipChatroomContact *contact,
60
 
                                                          GossipChatroomAffiliation affiliation);
 
47
GType                   gossip_chatroom_contact_get_type         (void) G_GNUC_CONST;
 
48
 
 
49
GossipChatroomContact * gossip_chatroom_contact_new              (GossipAccount             *account);
 
50
GossipChatroomContact * gossip_chatroom_contact_new_full         (GossipAccount             *account,
 
51
                                                                  const gchar               *id,
 
52
                                                                  const gchar               *name);
 
53
GossipChatroomContact * gossip_chatroom_contact_new_from_contact (GossipContact             *contact);
 
54
GossipChatroomRole      gossip_chatroom_contact_get_role         (GossipChatroomContact     *contact);
 
55
void                    gossip_chatroom_contact_set_role         (GossipChatroomContact     *contact,
 
56
                                                                  GossipChatroomRole         role);
 
57
GossipChatroomAffiliation gossip_chatroom_contact_get_affiliation (GossipChatroomContact    *contact);
 
58
void                    gossip_chatroom_contact_set_affiliation  (GossipChatroomContact     *contact,
 
59
                                                                  GossipChatroomAffiliation  affiliation);
61
60
 
62
61
#endif /* __GOSSIP_CHATROOM_CONTACT_H__ */