1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #ifndef ICALRESTRICTION_H
- #define ICALRESTRICTION_H
- #include "libical_ical_export.h"
- #include "icalcomponent.h"
- #include "icalproperty.h"
- typedef enum icalrestriction_kind
- {
- ICAL_RESTRICTION_NONE = 0,
- ICAL_RESTRICTION_ZERO,
- ICAL_RESTRICTION_ONE,
- ICAL_RESTRICTION_ZEROPLUS,
- ICAL_RESTRICTION_ONEPLUS,
- ICAL_RESTRICTION_ZEROORONE,
- ICAL_RESTRICTION_ONEEXCLUSIVE,
- ICAL_RESTRICTION_ONEMUTUAL,
- ICAL_RESTRICTION_UNKNOWN
- } icalrestriction_kind;
- LIBICAL_ICAL_EXPORT int icalrestriction_compare(icalrestriction_kind restr, int count);
- LIBICAL_ICAL_EXPORT int icalrestriction_check(icalcomponent *comp);
- #endif
|