summaryrefslogtreecommitdiffabout
path: root/libical/src/libicalss/icaldirsetimpl.h
Unidiff
Diffstat (limited to 'libical/src/libicalss/icaldirsetimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libical/src/libicalss/icaldirsetimpl.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/libical/src/libicalss/icaldirsetimpl.h b/libical/src/libicalss/icaldirsetimpl.h
new file mode 100644
index 0000000..0e69ba2
--- a/dev/null
+++ b/libical/src/libicalss/icaldirsetimpl.h
@@ -0,0 +1,47 @@
1/* -*- Mode: C -*-
2 ======================================================================
3 FILE: icaldirsetimpl.h
4 CREATOR: eric 21 Aug 2000
5
6 $Id$
7 $Locker$
8
9 (C) COPYRIGHT 2000, Eric Busboom, http://www.softwarestudio.org
10
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of either:
13
14 The LGPL as published by the Free Software Foundation, version
15 2.1, available at: http://www.fsf.org/copyleft/lesser.html
16
17 Or:
18
19 The Mozilla Public License Version 1.0. You may obtain a copy of
20 the License at http://www.mozilla.org/MPL/
21
22 The Original Code is eric. The Initial Developer of the Original
23 Code is Eric Busboom
24
25
26 ======================================================================*/
27
28
29#ifdef HAVE_CONFIG_H
30#include "config.h"
31#endif
32
33/* This definition is in its own file so it can be kept out of the
34 main header file, but used by "friend classes" like icalset*/
35
36#define ICALDIRSET_ID "dset"
37
38struct icaldirset_impl
39{
40 char id[5]; /* "dset" */
41 char* dir;
42 icalcomponent* gauge;
43 icaldirset* cluster;
44 int first_component;
45 pvl_list directory;
46 pvl_elem directory_iterator;
47};