Vuo  1.0.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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.
 
struct json_object * VuoRssItem_getJson (const VuoRssItem value)
 Encodes value as a JSON object.
 
char * VuoRssItem_getSummary (const VuoRssItem value)
 Returns a compact string representation of value.
 
VuoRssItem VuoRssItem_makeFromString (const char *str)
 Automatically generated function.
 
char * VuoRssItem_getString (const VuoRssItem value)
 Automatically generated function.
 
void VuoRssItem_retain (VuoRssItem value)
 Automatically generated function.
 
void VuoRssItem_release (VuoRssItem value)
 Automatically generated function.
 

Class Documentation

struct VuoRssItem
Class Members
VuoText author
VuoText description
VuoImage image
VuoText title
VuoText url

Function Documentation

struct json_object* VuoRssItem_getJson ( const VuoRssItem  value)
read

Encodes value as a JSON object.

char* VuoRssItem_getString ( const VuoRssItem  value)

Automatically generated function.

char* VuoRssItem_getSummary ( const VuoRssItem  value)

Returns a compact string representation of value.

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, …}
}
VuoRssItem VuoRssItem_makeFromString ( const char *  str)

Automatically generated function.

void VuoRssItem_release ( VuoRssItem  value)

Automatically generated function.

void VuoRssItem_retain ( VuoRssItem  value)

Automatically generated function.