icalclassify.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /*======================================================================
  2. FILE: icalclassify.h
  3. CREATOR: eric 21 Aug 2000
  4. (C) COPYRIGHT 2000, Eric Busboom <eric@softwarestudio.org>
  5. http://www.softwarestudio.org
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of either:
  8. The LGPL as published by the Free Software Foundation, version
  9. 2.1, available at: http://www.gnu.org/licenses/lgpl-2.1.html
  10. Or:
  11. The Mozilla Public License Version 1.0. You may obtain a copy of
  12. the License at http://www.mozilla.org/MPL/
  13. =========================================================================*/
  14. #ifndef ICALCLASSIFY_H
  15. #define ICALCLASSIFY_H
  16. #include "libical_icalss_export.h"
  17. #include "icalset.h"
  18. #include "icalcomponent.h"
  19. LIBICAL_ICALSS_EXPORT icalproperty_xlicclass icalclassify(icalcomponent *c,
  20. icalcomponent *match, const char *user);
  21. LIBICAL_ICALSS_EXPORT icalcomponent *icalclassify_find_overlaps(icalset *set,
  22. icalcomponent *comp);
  23. LIBICAL_ICALSS_EXPORT char *icalclassify_class_to_string(icalproperty_xlicclass c);
  24. #endif /* ICALCLASSIFY_H */