|  |  |  | librygel-server Reference Manual |  | 
|---|---|---|---|---|
| Top | Description | ||||
#define RYGEL_TYPE_PHOTO_ITEM #define RYGEL_PHOTO_ITEM_UPNP_CLASS RygelPhotoItem * rygel_photo_item_new (const gchar *id,RygelMediaContainer *parent,const gchar *title,const gchar *upnp_class); const gchar * rygel_photo_item_get_creator (RygelPhotoItem *self); void rygel_photo_item_set_creator (RygelPhotoItem *self,const gchar *value); struct RygelPhotoItem; struct RygelPhotoItemClass;
#define RYGEL_TYPE_PHOTO_ITEM (rygel_photo_item_get_type ())
The type for RygelPhotoItem.
RygelPhotoItem * rygel_photo_item_new (const gchar *id,RygelMediaContainer *parent,const gchar *title,const gchar *upnp_class);
const gchar *       rygel_photo_item_get_creator        (RygelPhotoItem *self);
Get and return the current value of the "creator" property.
| 
 | the RygelPhotoItem instance to query | 
| Returns : | the value of the "creator" property | 
void rygel_photo_item_set_creator (RygelPhotoItem *self,const gchar *value);
Set the value of the "creator" property to value.
| 
 | the RygelPhotoItem instance to modify | 
| 
 | the new value of the "creator" property | 
struct RygelPhotoItem {
	RygelImageItem parent_instance;
	RygelPhotoItemPrivate * priv;
};
Represents a photo item.
struct RygelPhotoItemClass {
	RygelImageItemClass parent_class;
};
The class structure for RYGEL_TYPE_PHOTO_ITEM. All the fields in this structure are private and should never be accessed directly.
| RygelImageItemClass  | the parent class structure |