aboutsummaryrefslogtreecommitdiffstats
path: root/libical/src/libicalss/icaldirset.h
diff options
context:
space:
mode:
Diffstat (limited to 'libical/src/libicalss/icaldirset.h')
-rw-r--r--libical/src/libicalss/icaldirset.h82
1 files changed, 0 insertions, 82 deletions
diff --git a/libical/src/libicalss/icaldirset.h b/libical/src/libicalss/icaldirset.h
deleted file mode 100644
index 7d205ecf0a..0000000000
--- a/libical/src/libicalss/icaldirset.h
+++ /dev/null
@@ -1,82 +0,0 @@
-/* -*- Mode: C -*- */
-/*======================================================================
- FILE: icaldirset.h
- CREATOR: eric 28 November 1999
-
-
- $Id$
- $Locker$
-
- (C) COPYRIGHT 2000, Eric Busboom, http://www.softwarestudio.org
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of either:
-
- The LGPL as published by the Free Software Foundation, version
- 2.1, available at: http://www.fsf.org/copyleft/lesser.html
-
- Or:
-
- The Mozilla Public License Version 1.0. You may obtain a copy of
- the License at http://www.mozilla.org/MPL/
-
- The Original Code is eric. The Initial Developer of the Original
- Code is Eric Busboom
-
-
-======================================================================*/
-
-#ifndef ICALDIRSET_H
-#define ICALDIRSET_H
-
-#include "ical.h"
-
-/* icaldirset Routines for storing, fetching, and searching for ical
- * objects in a database */
-
-typedef void icaldirset;
-
-
-icaldirset* icaldirset_new(const char* path);
-
-void icaldirset_free(icaldirset* store);
-
-const char* icaldirset_path(icaldirset* store);
-
-/* Mark the cluster as changed, so it will be written to disk when it
- is freed. Commit writes to disk immediately*/
-void icaldirset_mark(icaldirset* store);
-icalerrorenum icaldirset_commit(icaldirset* store);
-
-icalerrorenum icaldirset_add_component(icaldirset* store, icalcomponent* comp);
-icalerrorenum icaldirset_remove_component(icaldirset* store, icalcomponent* comp);
-
-int icaldirset_count_components(icaldirset* store,
- icalcomponent_kind kind);
-
-/* Restrict the component returned by icaldirset_first, _next to those
- that pass the gauge. _clear removes the gauge. */
-icalerrorenum icaldirset_select(icaldirset* store, icalcomponent* gauge);
-void icaldirset_clear(icaldirset* store);
-
-/* Get a component by uid */
-icalcomponent* icaldirset_fetch(icaldirset* store, const char* uid);
-int icaldirset_has_uid(icaldirset* store, const char* uid);
-icalcomponent* icaldirset_fetch_match(icaldirset* set, icalcomponent *c);
-
-/* Modify components according to the MODIFY method of CAP. Works on
- the currently selected components. */
-icalerrorenum icaldirset_modify(icaldirset* store, icalcomponent *oldc,
- icalcomponent *newc);
-
-/* Iterate through the components. If a guage has been defined, these
- will skip over components that do not pass the gauge */
-
-icalcomponent* icaldirset_get_current_component(icaldirset* store);
-icalcomponent* icaldirset_get_first_component(icaldirset* store);
-icalcomponent* icaldirset_get_next_component(icaldirset* store);
-
-#endif /* !ICALDIRSET_H */
-
-
-
/+1 * change the libtool version to use from 1.3 to 1.5oliver2005-06-031-1/+6 * Drop maintainershiplioux2005-03-051-1/+1 * Remove deprecated USE_SIZElioux2004-12-251-1/+0 * Apply a big libtool patch to allow porters to use the libtool installed bymarcus2004-07-101-1/+1 * Whoa there, boy, that's a mighty big commit y'all have there...ade2004-03-141-1/+1 * USE_SIZEifylioux2004-02-082-0/+2 * Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.marcus2004-02-041-0/+1 * De-pkg-commentlioux2003-02-242-1/+1 * Maintainer is now a committer, update email accordinglylioux2000-10-031-1/+1 * Change MAINTAINER e-mail address.dannyboy2000-09-231-1/+1 * Update to 1.0.0.sobomax2000-09-194-5/+5 * Change maintainer to be Mario Sergio Fujikawa Ferreira <lioux@uol.com.br>.sobomax2000-09-191-1/+1 * Make these COMMENT files conform to Handbook standard.will2000-08-111-1/+1 * Rename INSTALLS_SHLIBS to INSTALLS_SHLIB. (There was a typo in theasami2000-06-171-1/+1 * Final round of the INSTALLS_SHLIBS=yes conversion. Few remaining ports withsobomax2000-06-162-2/+1 * Teach MASTER_SITES about new MASTER_SITE_SOURCEFORGE.sobomax2000-06-141-1/+2