telepathygabble/inc/gabble-presence-cache.h
changeset 10 59927b2d3b75
parent 0 d0f3a028347a
--- a/telepathygabble/inc/gabble-presence-cache.h	Tue Feb 02 01:10:06 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,85 +0,0 @@
-/*
- * gabble-presence-cache.h - Headers for Gabble's contact presence cache
- * Copyright (C) 2005 Collabora Ltd.
- * 
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
- */
-
-#ifndef __GABBLE_PRESENCE_CACHE_H__
-#define __GABBLE_PRESENCE_CACHE_H__
-
-#include <glib-object.h>
-
-#include "gabble-presence.h"
-#include "handles.h"
-
-G_BEGIN_DECLS
-
-#define GABBLE_TYPE_PRESENCE_CACHE gabble_presence_cache_get_type()
-
-#define GABBLE_PRESENCE_CACHE(obj) \
-  (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
-  GABBLE_TYPE_PRESENCE_CACHE, GabblePresenceCache))
-
-#define GABBLE_PRESENCE_CACHE_CLASS(klass) \
-  (G_TYPE_CHECK_CLASS_CAST ((klass), \
-  GABBLE_TYPE_PRESENCE_CACHE, GabblePresenceCacheClass))
-
-#define GABBLE_IS_PRESENCE_CACHE(obj) \
-  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
-  GABBLE_TYPE_PRESENCE_CACHE))
-
-#define GABBLE_IS_PRESENCE_CACHE_CLASS(klass) \
-  (G_TYPE_CHECK_CLASS_TYPE ((klass), \
-  GABBLE_TYPE_PRESENCE_CACHE))
-
-#define GABBLE_PRESENCE_CACHE_GET_CLASS(obj) \
-  (G_TYPE_INSTANCE_GET_CLASS ((obj), \
-  GABBLE_TYPE_PRESENCE_CACHE, GabblePresenceCacheClass))
-
-#define JABBER_PRESENCE_SHOW_AWAY "away"
-#define JABBER_PRESENCE_SHOW_CHAT "chat"
-#define JABBER_PRESENCE_SHOW_DND "dnd"
-#define JABBER_PRESENCE_SHOW_XA "xa"
-
-struct _GabblePresenceCache {
-    GObject parent;
-    gpointer priv;
-};
-
-typedef struct _GabblePresenceCacheClass GabblePresenceCacheClass;
-
-struct _GabblePresenceCacheClass {
-    GObjectClass parent_class;
-};
-
-IMPORT_C GType gabble_presence_cache_get_type (void);
-
-GabblePresenceCache *gabble_presence_cache_new (GabbleConnection *conn);
-GabblePresence *gabble_presence_cache_get (GabblePresenceCache *cache,
-    GabbleHandle handle);
-void gabble_presence_cache_update (GabblePresenceCache *cache,
-    GabbleHandle handle, const gchar *resource, GabblePresenceId presence_id,
-    const gchar *status_message, gint8 priority);
-void gabble_presence_cache_maybe_remove (GabblePresenceCache *cache,
-    GabbleHandle handle);
-void gabble_presence_cache_add_bundle_caps (GabblePresenceCache *cache,
-    const gchar *node, GabblePresenceCapabilities caps);
-
-G_END_DECLS
-
-#endif /* __GABBLE_PRESENCE_CACHE_H__ */
-