Main Page | Modules | Data Structures | File List | Data Fields | Globals | Related Pages

GTaskRemoveWatchPacket


Data Structures

struct  _GTaskRemoveWatchPacket
struct  _GTaskRemoveWatchPacketClass
struct  _GTaskRemoveWatchPacketPrivate

Defines

#define GTASK_REMOVE_WATCH_PACKET_TYPE   (gtask_remove_watch_packet_get_type())
#define GTASK_REMOVE_WATCH_PACKET(obj)
#define GTASK_REMOVE_WATCH_PACKET_CLASS(klass)
#define GTASK_IS_REMOVE_WATCH_PACKET(obj)
#define GTASK_IS_REMOVE_WATCH_PACKET_CLASS(klass)
#define GTASK_REMOVE_WATCH_PACKET_GET_CLASS(obj)

Typedefs

typedef _GTaskRemoveWatchPacket GTaskRemoveWatchPacket
typedef _GTaskRemoveWatchPacketPrivate GTaskRemoveWatchPacketPrivate
typedef _GTaskRemoveWatchPacketClass GTaskRemoveWatchPacketClass

Enumerations

enum  { PROP_0, PROP_WATCH_ID }

Functions

void gtask_remove_watch_packet_class_init (GTaskRemoveWatchPacketClass *klass)
void gtask_remove_watch_packet_init (GTaskRemoveWatchPacket *packet, gpointer g_class)
void gtask_remove_watch_packet_finalize (GObject *packet)
gboolean gtask_remove_watch_packet_serialize_to (GTaskPacket *packet, GTaskConnection *conn)
 writes out the xml form of the passed in GTaskRemoveWatchPacket to the passed in GTaskConnection. In general this function should never be called, except from within the library. To serialize any packet call gtask_packet_serialize( GTaskPacket * ) instead.

void gtask_remove_watch_packet_set_property (GObject *object, guint param_id, const GValue *value, GParamSpec *pspec)
void gtask_remove_watch_packet_get_property (GObject *object, guint param_id, GValue *value, GParamSpec *pspec)
GType gtask_remove_watch_packet_get_type (void)
GTaskRemoveWatchPacketgtask_remove_watch_packet_new ()
 creates a new GTaskRemoveWatchPacket

GTaskRemoveWatchPacketgtask_remove_watch_packet_new_with_watch_id (const char *watch_id)
 creates a new GTaskRemoveWatchPacket with the passed in watch_id

const char * gtask_remove_watch_packet_get_watch_id (GTaskRemoveWatchPacket *packet)
 returns the watch id held by the passed in GTaskRemoveWatchPacket

void gtask_remove_watch_packet_set_watch_id (GTaskRemoveWatchPacket *packet, const char *watch_id)
 sets the watch id of the passed in GTaskRemoveWatchPacket


Variables

gpointer parent_class = NULL

Define Documentation

#define GTASK_IS_REMOVE_WATCH_PACKET obj   ) 
 

Value:

(G_TYPE_CHECK_INSTANCE_TYPE( (obj), \
                                            GTASK_REMOVE_WATCH_PACKET_TYPE ))
returns TRUE if the passed in object is a GTaskRemoveWatchPacket, FALSE otherwise

Definition at line 34 of file gtask-remove-watch-packet.h.

#define GTASK_IS_REMOVE_WATCH_PACKET_CLASS klass   ) 
 

Value:

(G_TYPE_CHECK_CLASS_TYPE( (klass), \
                                            GTASK_REMOVE_WATCH_PACKET_TYPE ))
returns TRUE if the passed in object is a GTaskRemoveWatchPacketClass, FALSE otherwise

Definition at line 41 of file gtask-remove-watch-packet.h.

#define GTASK_REMOVE_WATCH_PACKET obj   ) 
 

Value:

(G_TYPE_CHECK_INSTANCE_CAST( (obj), \
                                            GTASK_REMOVE_WATCH_PACKET_TYPE, \
                                            GTaskRemoveWatchPacket ))
casts the passed in object to a GTaskRemoveWatchPacket

Definition at line 20 of file gtask-remove-watch-packet.h.

#define GTASK_REMOVE_WATCH_PACKET_CLASS klass   ) 
 

Value:

(G_TYPE_CHECK_CLASS_CAST( (klass), \
                                            GTASK_REMOVE_WATCH_PACKET_TYPE, \
                                            GTaskRemoveWatchPacketClass ))
casts the passed in object to a GTaskRemoveWatchPacketClass

Definition at line 25 of file gtask-remove-watch-packet.h.

#define GTASK_REMOVE_WATCH_PACKET_GET_CLASS obj   ) 
 

Value:

(G_TYPE_INSTANCE_GET_CLASS( (obj), \
                                            GTASK_REMOVE_WATCH_PACKET_TYPE, \
                                            GTaskRemoveWatchPacketClass ))

Definition at line 45 of file gtask-remove-watch-packet.h.

#define GTASK_REMOVE_WATCH_PACKET_TYPE   (gtask_remove_watch_packet_get_type())
 

returns the GType of GTaskRemoveWatchPacket

Definition at line 17 of file gtask-remove-watch-packet.h.


Typedef Documentation

typedef struct _GTaskRemoveWatchPacket GTaskRemoveWatchPacket
 

Definition at line 11 of file gtask-remove-watch-packet.h.

typedef struct _GTaskRemoveWatchPacketClass GTaskRemoveWatchPacketClass
 

Definition at line 13 of file gtask-remove-watch-packet.h.

typedef struct _GTaskRemoveWatchPacketPrivate GTaskRemoveWatchPacketPrivate
 

Definition at line 12 of file gtask-remove-watch-packet.h.


Enumeration Type Documentation

anonymous enum
 

Enumeration values:
PROP_0 
PROP_WATCH_ID 

Definition at line 7 of file gtask-remove-watch-packet.c.


Function Documentation

void gtask_remove_watch_packet_class_init GTaskRemoveWatchPacketClass klass  )  [static]
 

Definition at line 67 of file gtask-remove-watch-packet.c.

void gtask_remove_watch_packet_finalize GObject *  packet  )  [static]
 

Definition at line 98 of file gtask-remove-watch-packet.c.

void gtask_remove_watch_packet_get_property GObject *  object,
guint  param_id,
GValue *  value,
GParamSpec *  pspec
[static]
 

Definition at line 128 of file gtask-remove-watch-packet.c.

GType gtask_remove_watch_packet_get_type void   ) 
 

Definition at line 41 of file gtask-remove-watch-packet.c.

const char * gtask_remove_watch_packet_get_watch_id GTaskRemoveWatchPacket packet  ) 
 

returns the watch id held by the passed in GTaskRemoveWatchPacket

Author:
Michael Henson
Parameters:
packet a GTaskRemoveWatchPacket
return the watch id

Definition at line 242 of file gtask-remove-watch-packet.c.

void gtask_remove_watch_packet_init GTaskRemoveWatchPacket packet,
gpointer  g_class
[static]
 

Definition at line 89 of file gtask-remove-watch-packet.c.

GTaskRemoveWatchPacket * gtask_remove_watch_packet_new void   ) 
 

creates a new GTaskRemoveWatchPacket

Author:
Michael Henson
Returns:
the new GTaskRemoveWatchPacket

Definition at line 210 of file gtask-remove-watch-packet.c.

GTaskRemoveWatchPacket * gtask_remove_watch_packet_new_with_watch_id const char *  watch_id  ) 
 

creates a new GTaskRemoveWatchPacket with the passed in watch_id

Author:
Michael Henson
Parameters:
watch_id the watch id
Returns:
the new GTaskRemoveTaskPacket

Definition at line 224 of file gtask-remove-watch-packet.c.

gboolean gtask_remove_watch_packet_serialize_to GTaskPacket packet,
GTaskConnection conn
[static]
 

writes out the xml form of the passed in GTaskRemoveWatchPacket to the passed in GTaskConnection. In general this function should never be called, except from within the library. To serialize any packet call gtask_packet_serialize( GTaskPacket * ) instead.

Author:
Michael Henson
Parameters:
packet a GTaskRemoveWatchPacket
conn a GTaskConnection
Returns:
the success/failure of the operation

Definition at line 159 of file gtask-remove-watch-packet.c.

void gtask_remove_watch_packet_set_property GObject *  object,
guint  param_id,
const GValue *  value,
GParamSpec *  pspec
[static]
 

Definition at line 110 of file gtask-remove-watch-packet.c.

void gtask_remove_watch_packet_set_watch_id GTaskRemoveWatchPacket packet,
const char *  watch_id
 

sets the watch id of the passed in GTaskRemoveWatchPacket

Author:
Michael Henson
Parameters:
packet a GTaskRemoveWatchPacket
watch_id the new watch id

Definition at line 257 of file gtask-remove-watch-packet.c.


Variable Documentation

gpointer parent_class = NULL [static]
 

Definition at line 12 of file gtask-remove-watch-packet.c.


Generated on Mon Feb 2 21:26:17 2004 for libgtask by doxygen 1.3.4