author | zautrix <zautrix> | 2004-06-26 19:01:18 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-06-26 19:01:18 (UTC) |
commit | b9aad1f15dc600e4dbe4c62d3fcced6363188ba3 (patch) (unidiff) | |
tree | 2c3d4004fb21c72cba65793859f9bcd8ffd3a49c /libical/src/libicalss/icalclassify.h | |
download | kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.zip kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.tar.gz kdepimpi-b9aad1f15dc600e4dbe4c62d3fcced6363188ba3.tar.bz2 |
Initial revision
Diffstat (limited to 'libical/src/libicalss/icalclassify.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | libical/src/libicalss/icalclassify.h | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/libical/src/libicalss/icalclassify.h b/libical/src/libicalss/icalclassify.h new file mode 100644 index 0000000..81188b3 --- a/dev/null +++ b/libical/src/libicalss/icalclassify.h | |||
@@ -0,0 +1,77 @@ | |||
1 | /* -*- Mode: C -*- */ | ||
2 | /*====================================================================== | ||
3 | FILE: icalclassify.h | ||
4 | CREATOR: eric 21 Aug 2000 | ||
5 | |||
6 | |||
7 | $Id$ | ||
8 | $Locker$ | ||
9 | |||
10 | (C) COPYRIGHT 2000, Eric Busboom, http://www.softwarestudio.org | ||
11 | |||
12 | This program is free software; you can redistribute it and/or modify | ||
13 | it under the terms of either: | ||
14 | |||
15 | The LGPL as published by the Free Software Foundation, version | ||
16 | 2.1, available at: http://www.fsf.org/copyleft/lesser.html | ||
17 | |||
18 | Or: | ||
19 | |||
20 | The Mozilla Public License Version 1.0. You may obtain a copy of | ||
21 | the License at http://www.mozilla.org/MPL/ | ||
22 | |||
23 | |||
24 | =========================================================================*/ | ||
25 | |||
26 | #ifndef ICALCLASSIFY_H | ||
27 | #define ICALCLASSIFY_H | ||
28 | |||
29 | #include "ical.h" | ||
30 | #include "icalset.h" | ||
31 | |||
32 | |||
33 | typedef enum icalclass { | ||
34 | ICAL_NO_CLASS, | ||
35 | ICAL_PUBLISH_NEW_CLASS, | ||
36 | ICAL_PUBLISH_UPDATE_CLASS, | ||
37 | ICAL_PUBLISH_FREEBUSY_CLASS, | ||
38 | ICAL_REQUEST_NEW_CLASS, | ||
39 | ICAL_REQUEST_UPDATE_CLASS, | ||
40 | ICAL_REQUEST_RESCHEDULE_CLASS, | ||
41 | ICAL_REQUEST_DELEGATE_CLASS, | ||
42 | ICAL_REQUEST_NEW_ORGANIZER_CLASS, | ||
43 | ICAL_REQUEST_FORWARD_CLASS, | ||
44 | ICAL_REQUEST_STATUS_CLASS, | ||
45 | ICAL_REQUEST_FREEBUSY_CLASS, | ||
46 | ICAL_REPLY_ACCEPT_CLASS, | ||
47 | ICAL_REPLY_DECLINE_CLASS, | ||
48 | ICAL_REPLY_DELEGATE_CLASS, | ||
49 | ICAL_REPLY_CRASHER_ACCEPT_CLASS, | ||
50 | ICAL_REPLY_CRASHER_DECLINE_CLASS, | ||
51 | ICAL_ADD_INSTANCE_CLASS, | ||
52 | ICAL_CANCEL_EVENT_CLASS, | ||
53 | ICAL_CANCEL_INSTANCE_CLASS, | ||
54 | ICAL_CANCEL_ALL_CLASS, | ||
55 | ICAL_REFRESH_CLASS, | ||
56 | ICAL_COUNTER_CLASS, | ||
57 | ICAL_DECLINECOUNTER_CLASS, | ||
58 | ICAL_MALFORMED_CLASS, | ||
59 | ICAL_OBSOLETE_CLASS, /* 21 */ | ||
60 | ICAL_MISSEQUENCED_CLASS, /* 22 */ | ||
61 | ICAL_UNKNOWN_CLASS /* 23 */ | ||
62 | } ical_class; | ||
63 | |||
64 | ical_class icalclassify(icalcomponent* c,icalcomponent* match, | ||
65 | const char* user); | ||
66 | |||
67 | icalcomponent* icalclassify_find_overlaps(icalset* set, icalcomponent* comp); | ||
68 | |||
69 | char* icalclassify_class_to_string(ical_class iclass); | ||
70 | |||
71 | |||
72 | #endif /* ICALCLASSIFY_H*/ | ||
73 | |||
74 | |||
75 | |||
76 | |||
77 | |||