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
@@ -9,39 +9,40 @@
9 (C) COPYRIGHT 2000, Eric Busboom, http://www.softwarestudio.org 9 (C) COPYRIGHT 2000, Eric Busboom, http://www.softwarestudio.org
10 10
11 This program is free software; you can redistribute it and/or modify 11 This program is free software; you can redistribute it and/or modify
12 it under the terms of either: 12 it under the terms of either:
13 13
14 The LGPL as published by the Free Software Foundation, version 14 The LGPL as published by the Free Software Foundation, version
15 2.1, available at: http://www.fsf.org/copyleft/lesser.html 15 2.1, available at: http://www.fsf.org/copyleft/lesser.html
16 16
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};