Libical API Documentation 4.0
Loading...
Searching...
No Matches
icalbdbsetimpl.h
1/*======================================================================
2 FILE: icalbdbsetimpl.h
3
4 SPDX-FileCopyrightText: 2001, Critical Path
5
6 SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0
7
8======================================================================*/
9
10#ifndef ICALBDBSETIMPL_H
11#define ICALBDBSETIMPL_H
12
13#include "icalset.h"
14#include <db.h>
15
16/* This definition is in its own file so it can be kept out of the
17 main header file, but used by "friend classes" like icaldirset*/
18
20 icalset super;
21 const char *path;
22 const char *subdb;
23 const char *sindex;
24 const char *key;
25 void *data;
26 int datasize;
27 int changed;
28 icalcomponent *cluster;
29 icalgauge *gauge;
30 DB_ENV *dbenv;
31 DB *dbp;
32 DB *sdbp;
33 DBC *dbcp;
34};
35
36#endif
Definition icalbdbsetimpl.h:19
icalset super
Definition icalbdbsetimpl.h:20