aboutsummaryrefslogtreecommitdiffstats
path: root/libical/src/libicalss/icalspanlist.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-05-26 03:29:39 +0800
committernobody <nobody@localhost>2001-05-26 03:29:39 +0800
commitbe0db30b9482f915d3bfcc68cdd59bce073581b5 (patch)
tree8c1a355ccd0c851879a204e6263cbe6397f1aa5a /libical/src/libicalss/icalspanlist.h
parent03df6fccdefe8b11215183bf4dcfef71eef2290c (diff)
downloadgsoc2013-evolution-be0db30b9482f915d3bfcc68cdd59bce073581b5.tar
gsoc2013-evolution-be0db30b9482f915d3bfcc68cdd59bce073581b5.tar.gz
gsoc2013-evolution-be0db30b9482f915d3bfcc68cdd59bce073581b5.tar.bz2
gsoc2013-evolution-be0db30b9482f915d3bfcc68cdd59bce073581b5.tar.lz
gsoc2013-evolution-be0db30b9482f915d3bfcc68cdd59bce073581b5.tar.xz
gsoc2013-evolution-be0db30b9482f915d3bfcc68cdd59bce073581b5.tar.zst
gsoc2013-evolution-be0db30b9482f915d3bfcc68cdd59bce073581b5.zip
This commit was manufactured by cvs2svn to create tagLIBGLADE_1_BEFORE_AUTOCONF_1_52
'LIBGLADE_1_BEFORE_AUTOCONF_1_52'. svn path=/tags/LIBGLADE_1_BEFORE_AUTOCONF_1_52/; revision=9995
Diffstat (limited to 'libical/src/libicalss/icalspanlist.h')
-rw-r--r--libical/src/libicalss/icalspanlist.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/libical/src/libicalss/icalspanlist.h b/libical/src/libicalss/icalspanlist.h
deleted file mode 100644
index 83cb1c8a6d..0000000000
--- a/libical/src/libicalss/icalspanlist.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/* -*- Mode: C -*- */
-/*======================================================================
- FILE: icalspanlist.h
- CREATOR: eric 21 Aug 2000
-
-
- $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/
-
-
- =========================================================================*/
-#ifndef ICALSPANLIST_H
-#define ICALSPANLIST_H
-
-#include "ical.h"
-#include "icalset.h"
-
-typedef void icalspanlist;
-
-/* Make a free list from a set of component. Start and end should be in UTC */
-icalspanlist* icalspanlist_new(icalset *set,
- struct icaltimetype start,
- struct icaltimetype end);
-
-void icalspanlist_free(icalspanlist* spl);
-
-icalcomponent* icalspanlist_make_free_list(icalspanlist* sl);
-icalcomponent* icalspanlist_make_busy_list(icalspanlist* sl);
-
-/* Get first free or busy time after time t. all times are in UTC */
-struct icalperiodtype icalspanlist_next_free_time(icalspanlist* sl,
- struct icaltimetype t);
-struct icalperiodtype icalspanlist_next_busy_time(icalspanlist* sl,
- struct icaltimetype t);
-
-void icalspanlist_dump(icalspanlist* s);
-
-#endif
-
-
-