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.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/libical/src/libicalss/icaldirsetimpl.h b/libical/src/libicalss/icaldirsetimpl.h
index 0e69ba2..332a369 100644
--- a/libical/src/libicalss/icaldirsetimpl.h
+++ b/libical/src/libicalss/icaldirsetimpl.h
@@ -17,31 +17,32 @@
17 Or: 17 Or:
18 18
19 The Mozilla Public License Version 1.0. You may obtain a copy of 19 The Mozilla Public License Version 1.0. You may obtain a copy of
20 the License at http://www.mozilla.org/MPL/ 20 the License at http://www.mozilla.org/MPL/
21 21
22 The Original Code is eric. The Initial Developer of the Original 22 The Original Code is eric. The Initial Developer of the Original
23 Code is Eric Busboom 23 Code is Eric Busboom
24 24
25 25
26 ======================================================================*/ 26 ======================================================================*/
27 27
28 28
29#ifdef HAVE_CONFIG_H 29#ifdef HAVE_CONFIG_H
30#include "config.h" 30#include "config.h"
31#endif 31#endif
32 32
33#include "icalcluster.h"
34
33/* This definition is in its own file so it can be kept out of the 35/* 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*/ 36 main header file, but used by "friend classes" like icalset*/
35 37
36#define ICALDIRSET_ID "dset"
37
38struct icaldirset_impl 38struct icaldirset_impl
39{ 39{
40 char id[5]; /* "dset" */ 40 icalset super; /**< parent class */
41 char* dir; 41 char* dir; /**< directory containing ics files */
42 icalcomponent* gauge; 42 icaldirset_options options;/**< copy of options passed to icalset_new() */
43 icaldirset* cluster; 43 icalcluster* cluster; /**< cluster containing data */
44 int first_component; 44 icalgauge* gauge; /**< gauge for filtering out data */
45 pvl_list directory; 45 int first_component; /**< ??? */
46 pvl_elem directory_iterator; 46 pvl_list directory; /**< ??? */
47 pvl_elem directory_iterator;/**< ??? */
47}; 48};