Vuo  2.3.2
Classes | Functions
VuoRssItem

Description

An item from an RSS feed.

Classes

struct  VuoRssItem
 An item from an RSS feed. More...
 

Functions

VuoRssItem VuoRssItem_makeFromJson (struct json_object *js)
 Decodes the JSON object js to create a new value. More...
 
struct json_objectVuoRssItem_getJson (const VuoRssItem value)
 Encodes value as a JSON object. More...
 
char * VuoRssItem_getSummary (const VuoRssItem value)
 Returns a compact string representation of value. More...
 
VuoRssItem VuoRssItem_makeFromString (const char *str)
 Automatically generated function. More...
 
char * VuoRssItem_getString (const VuoRssItem value)
 Automatically generated function. More...
 
void VuoRssItem_retain (VuoRssItem value)
 Automatically generated function. More...
 
void VuoRssItem_release (VuoRssItem value)
 Automatically generated function. More...
 

Class Documentation

◆ VuoRssItem

struct VuoRssItem
Class Members
VuoText author
VuoList_VuoText categories
double dateTime
VuoText description
VuoImage image
VuoUrl imageUrl
VuoText title
VuoUrl url

Function Documentation

◆ VuoRssItem_getJson()

struct json_object* VuoRssItem_getJson ( const VuoRssItem  value)

Encodes value as a JSON object.

Definition at line 63 of file VuoRssItem.c.

◆ VuoRssItem_getString()

char* VuoRssItem_getString ( const VuoRssItem  value)

Automatically generated function.

◆ VuoRssItem_getSummary()

char* VuoRssItem_getSummary ( const VuoRssItem  value)

Returns a compact string representation of value.

Definition at line 97 of file VuoRssItem.c.

◆ VuoRssItem_makeFromJson()

VuoRssItem VuoRssItem_makeFromJson ( json_object js)

Decodes the JSON object js to create a new value.

An example from https://vuo.org/composition/feed :

Example:
{
"title": "Parallax Scrolling",
"author": "smokris",
"description": "<p>A simple example of a few concepts:</p>…", // UTF8 HTML text
"url": "https://vuo.org/node/533",
"image": {"glTextureName": 42, …}
}

Definition at line 46 of file VuoRssItem.c.

◆ VuoRssItem_makeFromString()

VuoRssItem VuoRssItem_makeFromString ( const char *  str)

Automatically generated function.

◆ VuoRssItem_release()

void VuoRssItem_release ( VuoRssItem  value)

Automatically generated function.

◆ VuoRssItem_retain()

void VuoRssItem_retain ( VuoRssItem  value)

Automatically generated function.