GXmlComment

GXmlComment — Representation of comments nodes in any GXmlNode

Functions

Types and Values

Description

Functions

gxml_comment_get_str ()

gchar *
gxml_comment_get_str (GXmlComment *self);

Get and return the current value of the "str" property.

This should be implemented by returning "value"

Parameters

self

the GXmlComment instance to query

 

Returns

the value of the "str" property


gxml_comment_set_str ()

void
gxml_comment_set_str (GXmlComment *self,
                      const gchar *value);

Set the value of the "str" property to value .

This should be implemented by returning "value"

Parameters

self

the GXmlComment instance to modify

 

value

the new value of the "str" property

 

Types and Values

GXmlComment

typedef struct _GXmlComment GXmlComment;

Representation of comments nodes in any GXmlNode


struct GXmlCommentIface

struct GXmlCommentIface {
	GTypeInterface parent_iface;
	gchar* (*get_str) (GXmlComment* self);
	void (*set_str) (GXmlComment* self, const gchar* value);
};

Interface for creating GXmlComment implementations.

Members

GTypeInterface parent_iface;

the parent interface structure

 

get_str ()

getter method for the abstract property "str"

 

set_str ()

setter method for the abstract property "str"