summaryrefslogtreecommitdiffabout
path: root/libical/src/libicalss/icalfilesetimpl.h
Unidiff
Diffstat (limited to 'libical/src/libicalss/icalfilesetimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libical/src/libicalss/icalfilesetimpl.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/libical/src/libicalss/icalfilesetimpl.h b/libical/src/libicalss/icalfilesetimpl.h
new file mode 100644
index 0000000..fcd3415
--- a/dev/null
+++ b/libical/src/libicalss/icalfilesetimpl.h
@@ -0,0 +1,49 @@
1/* -*- Mode: C -*-
2 ======================================================================
3 FILE: icalfilesetimpl.h
4 CREATOR: eric 23 December 1999
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#include "icalgauge.h"
34
35/* This definition is in its own file so it can be kept out of the
36 main header file, but used by "friend classes" like icaldirset*/
37
38#define ICALFILESET_ID "fset"
39
40struct icalfileset_impl {
41
42 char id[5]; /*fset*/
43 char *path;
44 icalcomponent* cluster;
45 icalgauge* gauge;
46 int changed;
47 int fd; /* file descriptor */
48};
49