Libical API Documentation 4.0 UNRELEASED Go to the stable 3.0 documentation
Loading...
Searching...
No Matches
icalclusterimpl.h
1/*======================================================================
2 FILE: icalclusterimpl.h
3 CREATOR: acampi 13 March 2002
4
5 SPDX-FileCopyrightText: 2002 Andrea Campi <a.campi@inet.it>
6 SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0
7======================================================================*/
8
9#ifndef ICALCLUSTERIMPL_H
10#define ICALCLUSTERIMPL_H
11
12#include "icalcomponent.h"
13
14/* This definition is in its own file so it can be kept out of the
15 main header file, but used by "friend classes" like icaldirset*/
16
17#define ICALCLUSTER_ID "clus"
18
20 char id[5]; /* clus */
21
22 char *key;
23 icalcomponent *data;
24 int changed;
25};
26
27#endif
Definition icalclusterimpl.h:19