summaryrefslogtreecommitdiff
path: root/src/libical-glib/tools/header-structure-boilerplate-template
blob: b07dfa62dd5c1f8c44c57ea6ba336d592f315399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#define ${namespaceLowerSnake}_TYPE_${nameLowerSnake} \
    (${lowerSnake}_get_type ())
LIBICAL_ICAL_EXPORT
G_DECLARE_DERIVABLE_TYPE(${upperCamel}, ${lowerSnake}, ${namespaceLowerSnake}, ${nameLowerSnake}, ICalObject)

/**
 * ${upperCamel}:
 *
 * This is the ${upperCamel} instance.
 */

/**
 * ${upperCamel}Class:
 *
 * This is the ${upperCamel} class.
 */
struct _${upperCamel}Class {
    /*< private >*/
    ICalObjectClass parent;
};