aboutsummaryrefslogtreecommitdiff
path: root/vala-xmpp/src/module/roster/flag.vala
diff options
context:
space:
mode:
Diffstat (limited to 'vala-xmpp/src/module/roster/flag.vala')
-rw-r--r--vala-xmpp/src/module/roster/flag.vala30
1 files changed, 0 insertions, 30 deletions
diff --git a/vala-xmpp/src/module/roster/flag.vala b/vala-xmpp/src/module/roster/flag.vala
deleted file mode 100644
index c3e35158..00000000
--- a/vala-xmpp/src/module/roster/flag.vala
+++ /dev/null
@@ -1,30 +0,0 @@
-using Gee;
-
-using Xmpp.Core;
-
-namespace Xmpp.Roster {
-
-public class Flag : XmppStreamFlag {
- public const string ID = "roster";
- public HashMap<string, Item> roster_items = new HashMap<string, Item>();
-
- internal string? iq_id;
-
- public Collection<Item> get_roster() {
- return roster_items.values;
- }
-
- public Item? get_item(string jid) {
- return roster_items[jid];
- }
-
- public static Flag? get_flag(XmppStream stream) { return (Flag?) stream.get_flag(NS_URI, ID); }
-
- public static bool has_flag(XmppStream stream) { return get_flag(stream) != null; }
-
- public override string get_ns() { return NS_URI; }
-
- public override string get_id() { return ID; }
-}
-
-} \ No newline at end of file