Diffstat (limited to 'libical/src/libicalss/icalfilesetimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | libical/src/libicalss/icalfilesetimpl.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/libical/src/libicalss/icalfilesetimpl.h b/libical/src/libicalss/icalfilesetimpl.h index fcd3415..fe39604 100644 --- a/libical/src/libicalss/icalfilesetimpl.h +++ b/libical/src/libicalss/icalfilesetimpl.h | |||
@@ -25,6 +25,8 @@ | |||
25 | 25 | ||
26 | ======================================================================*/ | 26 | ======================================================================*/ |
27 | 27 | ||
28 | #ifndef ICALFILESETIMPL_H | ||
29 | #define ICALFILESETIMPL_H | ||
28 | 30 | ||
29 | #ifdef HAVE_CONFIG_H | 31 | #ifdef HAVE_CONFIG_H |
30 | #include "config.h" | 32 | #include "config.h" |
@@ -38,12 +40,14 @@ | |||
38 | #define ICALFILESET_ID "fset" | 40 | #define ICALFILESET_ID "fset" |
39 | 41 | ||
40 | struct icalfileset_impl { | 42 | struct icalfileset_impl { |
41 | 43 | icalset super; /**< parent class */ | |
42 | char id[5]; /*fset*/ | 44 | char *path; /**< pathname of file */ |
43 | char *path; | 45 | icalfileset_options options; /**< copy of options passed to icalset_new() */ |
44 | icalcomponent* cluster; | 46 | |
45 | icalgauge* gauge; | 47 | icalcomponent* cluster;/**< cluster containing data */ |
46 | int changed; | 48 | icalgauge* gauge; /**< gauge for filtering out data */ |
47 | int fd; /* file descriptor */ | 49 | int changed; /**< boolean flag, 1 if data has changed */ |
50 | int fd; /**< file descriptor */ | ||
48 | }; | 51 | }; |
49 | 52 | ||
53 | #endif | ||