summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2016-12-18 11:02:39 -0500
committerAllen Winter <allen.winter@kdab.com>2016-12-18 11:02:39 -0500
commit431cc09ef9869d5857da613e855a9cfba0201461 (patch)
tree7fa8c03f7f3c9f17586e60d23c8c5484bf2d22fc
parent4bc2136a63a3d7c0497c0dec24113f75569fd36b (diff)
downloadlibical-git-431cc09ef9869d5857da613e855a9cfba0201461.tar.gz
remove unused icalattachtype
-rw-r--r--src/java/ICalProperty.java876
-rw-r--r--src/java/ICalValue.java390
-rw-r--r--src/libical/icalattach.h20
-rw-r--r--src/python/LibicalWrap.i11
4 files changed, 629 insertions, 668 deletions
diff --git a/src/java/ICalProperty.java b/src/java/ICalProperty.java
index 074d7864..66a2893d 100644
--- a/src/java/ICalProperty.java
+++ b/src/java/ICalProperty.java
@@ -8,500 +8,496 @@ package net.cp.jlibical;
public class ICalProperty
{
- /** It's not typesafe, but it's simple to understand! */
- public interface ICalPropertyMethod
- {
- // icalproperty_method
- int ICAL_METHOD_X = 10011;
- int ICAL_METHOD_PUBLISH = 10012;
- int ICAL_METHOD_REQUEST = 10013;
- int ICAL_METHOD_REPLY = 10014;
- int ICAL_METHOD_ADD = 10015;
- int ICAL_METHOD_CANCEL = 10016;
- int ICAL_METHOD_REFRESH = 10017;
- int ICAL_METHOD_COUNTER = 10018;
- int ICAL_METHOD_DECLINECOUNTER = 10019;
- int ICAL_METHOD_CREATE = 10020;
- int ICAL_METHOD_READ = 10021;
- int ICAL_METHOD_RESPONSE = 10022;
- int ICAL_METHOD_MOVE = 10023;
- int ICAL_METHOD_MODIFY = 10024;
- int ICAL_METHOD_GENERATEUID = 10025;
- int ICAL_METHOD_DELETE = 10026;
- int ICAL_METHOD_NONE = 10027;
- }
-
- /** It's not typesafe, but it's simple to understand! */
- public interface ICalPropertyAction
- {
- // icalproperty_action
- int ICAL_ACTION_X = 10000;
- int ICAL_ACTION_AUDIO = 10001;
- int ICAL_ACTION_DISPLAY = 10002;
- int ICAL_ACTION_EMAIL = 10003;
- int ICAL_ACTION_PROCEDURE = 10004;
- int ICAL_ACTION_NONE = 10005;
- }
-
- /** It's not typesafe, but it's simple to understand! */
- public interface ICalPropertyKind
- {
- // icalproperty_kind
- int ICAL_ANY_PROPERTY = 0;
- int ICAL_ACTION_PROPERTY=1;
- int ICAL_ALLOWCONFLICT_PROPERTY=2;
- int ICAL_ATTACH_PROPERTY=3;
- int ICAL_ATTENDEE_PROPERTY=4;
- int ICAL_CALID_PROPERTY=5;
- int ICAL_CALMASTER_PROPERTY=6;
- int ICAL_CALSCALE_PROPERTY=7;
- int ICAL_CARID_PROPERTY=8;
- int ICAL_CATEGORIES_PROPERTY=9;
- int ICAL_CLASS_PROPERTY=10;
- int ICAL_COMMENT_PROPERTY=11;
- int ICAL_COMPLETED_PROPERTY=12;
- int ICAL_CONTACT_PROPERTY=13;
- int ICAL_CREATED_PROPERTY=14;
- int ICAL_DATEFORMAT_PROPERTY=15;
- int ICAL_DECREED_PROPERTY=16;
- int ICAL_DEFAULTCHARSET_PROPERTY=17;
- int ICAL_DEFAULTLOCALE_PROPERTY=18;
- int ICAL_DEFAULTTZID_PROPERTY=19;
- int ICAL_DESCRIPTION_PROPERTY=20;
- int ICAL_DTEND_PROPERTY=21;
- int ICAL_DTSTAMP_PROPERTY=22;
- int ICAL_DTSTART_PROPERTY=23;
- int ICAL_DUE_PROPERTY=24;
- int ICAL_DURATION_PROPERTY=25;
- int ICAL_EXDATE_PROPERTY=26;
- int ICAL_EXPAND_PROPERTY=27;
- int ICAL_EXRULE_PROPERTY=28;
- int ICAL_FREEBUSY_PROPERTY=29;
- int ICAL_GEO_PROPERTY=30;
- int ICAL_GRANT_PROPERTY=31;
- int ICAL_LASTMODIFIED_PROPERTY=32;
- int ICAL_LOCATION_PROPERTY=33;
- int ICAL_MAXRESULTS_PROPERTY=34;
- int ICAL_MAXRESULTSSIZE_PROPERTY=35;
- int ICAL_METHOD_PROPERTY=36;
- int ICAL_ORGANIZER_PROPERTY=37;
- int ICAL_OWNER_PROPERTY=38;
- int ICAL_PERCENTCOMPLETE_PROPERTY=39;
- int ICAL_PRIORITY_PROPERTY=40;
- int ICAL_PRODID_PROPERTY=41;
- int ICAL_QUERY_PROPERTY=42;
- int ICAL_QUERYNAME_PROPERTY=43;
- int ICAL_RDATE_PROPERTY=44;
- int ICAL_RECURRENCEID_PROPERTY=45;
- int ICAL_RELATEDTO_PROPERTY=46;
- int ICAL_RELCALID_PROPERTY=47;
- int ICAL_REPEAT_PROPERTY=48;
- int ICAL_REQUESTSTATUS_PROPERTY=49;
- int ICAL_RESOURCES_PROPERTY=50;
- int ICAL_RRULE_PROPERTY=51;
- int ICAL_SCOPE_PROPERTY=52;
- int ICAL_SEQUENCE_PROPERTY=53;
- int ICAL_STATUS_PROPERTY=54;
- int ICAL_SUMMARY_PROPERTY=55;
- int ICAL_TARGET_PROPERTY=56;
- int ICAL_TIMEFORMAT_PROPERTY=57;
- int ICAL_TRANSP_PROPERTY=58;
- int ICAL_TRIGGER_PROPERTY=59;
- int ICAL_TZID_PROPERTY=60;
- int ICAL_TZNAME_PROPERTY=61;
- int ICAL_TZOFFSETFROM_PROPERTY=62;
- int ICAL_TZOFFSETTO_PROPERTY=63;
- int ICAL_TZURL_PROPERTY=64;
- int ICAL_UID_PROPERTY=65;
- int ICAL_URL_PROPERTY=66;
- int ICAL_VERSION_PROPERTY=67;
- int ICAL_X_PROPERTY=68;
- int ICAL_XLICCLASS_PROPERTY=69;
- int ICAL_XLICCLUSTERCOUNT_PROPERTY=70;
- int ICAL_XLICERROR_PROPERTY=71;
- int ICAL_XLICMIMECHARSET_PROPERTY=72;
- int ICAL_XLICMIMECID_PROPERTY=73;
- int ICAL_XLICMIMECONTENTTYPE_PROPERTY=74;
- int ICAL_XLICMIMEENCODING_PROPERTY=75;
- int ICAL_XLICMIMEFILENAME_PROPERTY=76;
- int ICAL_XLICMIMEOPTINFO_PROPERTY=77;
- int ICAL_NO_PROPERTY=78;
- }
-
- public interface ICalPropertyStatus
- {
- // icalproperty_status
- int ICAL_STATUS_X = 10028;
- int ICAL_STATUS_TENTATIVE = 10029;
- int ICAL_STATUS_CONFIRMED = 10030;
- int ICAL_STATUS_COMPLETED = 10031;
- int ICAL_STATUS_NEEDSACTION = 10032;
- int ICAL_STATUS_CANCELLED = 10033;
- int ICAL_STATUS_INPROCESS = 10034;
- int ICAL_STATUS_DRAFT = 10035;
- int ICAL_STATUS_FINAL = 10036;
- int ICAL_STATUS_NONE = 10037;
- }
-
- /**
- * Constructor for ICalProperty
- * @param obj c++ pointer
- */
- private ICalProperty(long obj)
- {
- init(obj);
- }
-
- public ICalProperty()
- {
- init();
- }
-
- public ICalProperty(String str)
- {
- init(str);
- }
-
- public ICalProperty(/* ICalPropertyKind */ int kind)
- {
- init(kind);
- }
-
- public native String as_ical_string();
- public native /* ICalPropertyKind */ int isa();
- public native boolean isa_property(Object property);
-
- public native void add_parameter(ICalParameter parameter);
- public native void set_parameter(ICalParameter parameter);
- public native void set_parameter_from_string(String name, String val);
- public native String get_parameter_as_string(String name);
- public native void remove_parameter(/* ICalParameterKind */ int kind);
- public native int count_parameters();
-
- /* Iterate through the parameters */
- public native ICalParameter get_first_parameter(/* ICalParameterKind */ int kind);
- public native ICalParameter get_next_parameter(/* ICalParameterKind */ int kind);
-
- /* Access the value of the property */
- public native void set_value(ICalValue val);
- public native void set_value_from_string(String val, String kind);
-
- public native ICalValue get_value();
- public native String get_value_as_string();
-
- /* Return the name of the property -- the type name converted to a
+ /** It's not typesafe, but it's simple to understand! */
+ public interface ICalPropertyMethod
+ {
+ // icalproperty_method
+ int ICAL_METHOD_X = 10011;
+ int ICAL_METHOD_PUBLISH = 10012;
+ int ICAL_METHOD_REQUEST = 10013;
+ int ICAL_METHOD_REPLY = 10014;
+ int ICAL_METHOD_ADD = 10015;
+ int ICAL_METHOD_CANCEL = 10016;
+ int ICAL_METHOD_REFRESH = 10017;
+ int ICAL_METHOD_COUNTER = 10018;
+ int ICAL_METHOD_DECLINECOUNTER = 10019;
+ int ICAL_METHOD_CREATE = 10020;
+ int ICAL_METHOD_READ = 10021;
+ int ICAL_METHOD_RESPONSE = 10022;
+ int ICAL_METHOD_MOVE = 10023;
+ int ICAL_METHOD_MODIFY = 10024;
+ int ICAL_METHOD_GENERATEUID = 10025;
+ int ICAL_METHOD_DELETE = 10026;
+ int ICAL_METHOD_NONE = 10027;
+ }
+
+ /** It's not typesafe, but it's simple to understand! */
+ public interface ICalPropertyAction
+ {
+ // icalproperty_action
+ int ICAL_ACTION_X = 10000;
+ int ICAL_ACTION_AUDIO = 10001;
+ int ICAL_ACTION_DISPLAY = 10002;
+ int ICAL_ACTION_EMAIL = 10003;
+ int ICAL_ACTION_PROCEDURE = 10004;
+ int ICAL_ACTION_NONE = 10005;
+ }
+
+ /** It's not typesafe, but it's simple to understand! */
+ public interface ICalPropertyKind
+ {
+ // icalproperty_kind
+ int ICAL_ANY_PROPERTY = 0;
+ int ICAL_ACTION_PROPERTY=1;
+ int ICAL_ALLOWCONFLICT_PROPERTY=2;
+ int ICAL_ATTACH_PROPERTY=3;
+ int ICAL_ATTENDEE_PROPERTY=4;
+ int ICAL_CALID_PROPERTY=5;
+ int ICAL_CALMASTER_PROPERTY=6;
+ int ICAL_CALSCALE_PROPERTY=7;
+ int ICAL_CARID_PROPERTY=8;
+ int ICAL_CATEGORIES_PROPERTY=9;
+ int ICAL_CLASS_PROPERTY=10;
+ int ICAL_COMMENT_PROPERTY=11;
+ int ICAL_COMPLETED_PROPERTY=12;
+ int ICAL_CONTACT_PROPERTY=13;
+ int ICAL_CREATED_PROPERTY=14;
+ int ICAL_DATEFORMAT_PROPERTY=15;
+ int ICAL_DECREED_PROPERTY=16;
+ int ICAL_DEFAULTCHARSET_PROPERTY=17;
+ int ICAL_DEFAULTLOCALE_PROPERTY=18;
+ int ICAL_DEFAULTTZID_PROPERTY=19;
+ int ICAL_DESCRIPTION_PROPERTY=20;
+ int ICAL_DTEND_PROPERTY=21;
+ int ICAL_DTSTAMP_PROPERTY=22;
+ int ICAL_DTSTART_PROPERTY=23;
+ int ICAL_DUE_PROPERTY=24;
+ int ICAL_DURATION_PROPERTY=25;
+ int ICAL_EXDATE_PROPERTY=26;
+ int ICAL_EXPAND_PROPERTY=27;
+ int ICAL_EXRULE_PROPERTY=28;
+ int ICAL_FREEBUSY_PROPERTY=29;
+ int ICAL_GEO_PROPERTY=30;
+ int ICAL_GRANT_PROPERTY=31;
+ int ICAL_LASTMODIFIED_PROPERTY=32;
+ int ICAL_LOCATION_PROPERTY=33;
+ int ICAL_MAXRESULTS_PROPERTY=34;
+ int ICAL_MAXRESULTSSIZE_PROPERTY=35;
+ int ICAL_METHOD_PROPERTY=36;
+ int ICAL_ORGANIZER_PROPERTY=37;
+ int ICAL_OWNER_PROPERTY=38;
+ int ICAL_PERCENTCOMPLETE_PROPERTY=39;
+ int ICAL_PRIORITY_PROPERTY=40;
+ int ICAL_PRODID_PROPERTY=41;
+ int ICAL_QUERY_PROPERTY=42;
+ int ICAL_QUERYNAME_PROPERTY=43;
+ int ICAL_RDATE_PROPERTY=44;
+ int ICAL_RECURRENCEID_PROPERTY=45;
+ int ICAL_RELATEDTO_PROPERTY=46;
+ int ICAL_RELCALID_PROPERTY=47;
+ int ICAL_REPEAT_PROPERTY=48;
+ int ICAL_REQUESTSTATUS_PROPERTY=49;
+ int ICAL_RESOURCES_PROPERTY=50;
+ int ICAL_RRULE_PROPERTY=51;
+ int ICAL_SCOPE_PROPERTY=52;
+ int ICAL_SEQUENCE_PROPERTY=53;
+ int ICAL_STATUS_PROPERTY=54;
+ int ICAL_SUMMARY_PROPERTY=55;
+ int ICAL_TARGET_PROPERTY=56;
+ int ICAL_TIMEFORMAT_PROPERTY=57;
+ int ICAL_TRANSP_PROPERTY=58;
+ int ICAL_TRIGGER_PROPERTY=59;
+ int ICAL_TZID_PROPERTY=60;
+ int ICAL_TZNAME_PROPERTY=61;
+ int ICAL_TZOFFSETFROM_PROPERTY=62;
+ int ICAL_TZOFFSETTO_PROPERTY=63;
+ int ICAL_TZURL_PROPERTY=64;
+ int ICAL_UID_PROPERTY=65;
+ int ICAL_URL_PROPERTY=66;
+ int ICAL_VERSION_PROPERTY=67;
+ int ICAL_X_PROPERTY=68;
+ int ICAL_XLICCLASS_PROPERTY=69;
+ int ICAL_XLICCLUSTERCOUNT_PROPERTY=70;
+ int ICAL_XLICERROR_PROPERTY=71;
+ int ICAL_XLICMIMECHARSET_PROPERTY=72;
+ int ICAL_XLICMIMECID_PROPERTY=73;
+ int ICAL_XLICMIMECONTENTTYPE_PROPERTY=74;
+ int ICAL_XLICMIMEENCODING_PROPERTY=75;
+ int ICAL_XLICMIMEFILENAME_PROPERTY=76;
+ int ICAL_XLICMIMEOPTINFO_PROPERTY=77;
+ int ICAL_NO_PROPERTY=78;
+ }
+
+ public interface ICalPropertyStatus
+ {
+ // icalproperty_status
+ int ICAL_STATUS_X = 10028;
+ int ICAL_STATUS_TENTATIVE = 10029;
+ int ICAL_STATUS_CONFIRMED = 10030;
+ int ICAL_STATUS_COMPLETED = 10031;
+ int ICAL_STATUS_NEEDSACTION = 10032;
+ int ICAL_STATUS_CANCELLED = 10033;
+ int ICAL_STATUS_INPROCESS = 10034;
+ int ICAL_STATUS_DRAFT = 10035;
+ int ICAL_STATUS_FINAL = 10036;
+ int ICAL_STATUS_NONE = 10037;
+ }
+
+ /**
+ * Constructor for ICalProperty
+ * @param obj c++ pointer
+ */
+ private ICalProperty(long obj)
+ {
+ init(obj);
+ }
+
+ public ICalProperty()
+ {
+ init();
+ }
+
+ public ICalProperty(String str)
+ {
+ init(str);
+ }
+
+ public ICalProperty(/* ICalPropertyKind */ int kind)
+ {
+ init(kind);
+ }
+
+ public native String as_ical_string();
+ public native /* ICalPropertyKind */ int isa();
+ public native boolean isa_property(Object property);
+
+ public native void add_parameter(ICalParameter parameter);
+ public native void set_parameter(ICalParameter parameter);
+ public native void set_parameter_from_string(String name, String val);
+ public native String get_parameter_as_string(String name);
+ public native void remove_parameter(/* ICalParameterKind */ int kind);
+ public native int count_parameters();
+
+ /* Iterate through the parameters */
+ public native ICalParameter get_first_parameter(/* ICalParameterKind */ int kind);
+ public native ICalParameter get_next_parameter(/* ICalParameterKind */ int kind);
+
+ /* Access the value of the property */
+ public native void set_value(ICalValue val);
+ public native void set_value_from_string(String val, String kind);
+
+ public native ICalValue get_value();
+ public native String get_value_as_string();
+
+ /* Return the name of the property -- the type name converted to a
String, or the value of get_x_name if the type is X property
- */
- public native String get_name();
+ */
+ public native String get_name();
- /* Deal with X properties */
- //static void set_x_name(ICalProperty prop, String name);
- //static String get_x_name(ICalProperty prop);
+ /* Deal with X properties */
+ //static void set_x_name(ICalProperty prop, String name);
+ //static String get_x_name(ICalProperty prop);
- //public native static /* ICalValueKind */ int value_to_value_kind(/* ICalParameterValue */ int val);
+ //public native static /* ICalValueKind */ int value_to_value_kind(/* ICalParameterValue */ int val);
- /* Convert kinds to String and get default value type */
- //public native static /* ICalValueKind */ int kind_to_value_kind(/* ICalPropertyKind */ int kind);
- //public native static /* ICalValueKind */ int value_kind_to_kind(/* ICalValueKind */ int kind);
- //public native static String kind_to_string(/* ICalPropertyKind */ int kind);
- //public native static /* ICalPropertyKind */ int string_to_kind(String str);
+ /* Convert kinds to String and get default value type */
+ //public native static /* ICalValueKind */ int kind_to_value_kind(/* ICalPropertyKind */ int kind);
+ //public native static /* ICalValueKind */ int value_kind_to_kind(/* ICalValueKind */ int kind);
+ //public native static String kind_to_string(/* ICalPropertyKind */ int kind);
+ //public native static /* ICalPropertyKind */ int string_to_kind(String str);
- //public native static /* ICalPropertyMethod */ int string_to_method(String str);
- //public native static String method_to_string(/* ICalPropertyMethod */ int method);
+ //public native static /* ICalPropertyMethod */ int string_to_method(String str);
+ //public native static String method_to_string(/* ICalPropertyMethod */ int method);
- //public native static String enum_to_string(int e);
- //public native static int string_to_enum(String str);
+ //public native static String enum_to_string(int e);
+ //public native static int string_to_enum(String str);
- //public native static String status_to_string(/* ICalPropertyStatus */ int status);
- //public native static /* ICalPropertyStatus */ int string_to_status(String str);
+ //public native static String status_to_string(/* ICalPropertyStatus */ int status);
+ //public native static /* ICalPropertyStatus */ int string_to_status(String str);
- //public native static int enum_belongs_to_property(/* ICalPropertyKind */ int kind, int e);
+ //public native static int enum_belongs_to_property(/* ICalPropertyKind */ int kind, int e);
- /* ACTION */
- public native void set_action(/* ICalPropertyAction */ int v);
- public native /* ICalPropertyAction */ int get_action();
+ /* ACTION */
+ public native void set_action(/* ICalPropertyAction */ int v);
+ public native /* ICalPropertyAction */ int get_action();
- /* ATTACH */
- //void set_attach(struct icalattachtype v);
- //struct icalattachtype get_attach();
+ /* ATTENDEE */
+ public native void set_attendee(String val);
+ public native String get_attendee();
- /* ATTENDEE */
- public native void set_attendee(String val);
- public native String get_attendee();
+ /* CALSCALE */
+ //public native void set_calscale(String val);
+ //public native String get_calscale();
- /* CALSCALE */
- //public native void set_calscale(String val);
- //public native String get_calscale();
+ /* CATEGORIES */
+ //public native void set_categories(String val);
+ //public native String get_categories();
- /* CATEGORIES */
- //public native void set_categories(String val);
- //public native String get_categories();
+ /* CLASS */
+ //public native void set_class(String val);
+ //public native String get_class();
- /* CLASS */
- //public native void set_class(String val);
- //public native String get_class();
+ /* COMMENT */
+ public native void set_comment(String val);
+ public native String get_comment();
- /* COMMENT */
- public native void set_comment(String val);
- public native String get_comment();
+ /* COMPLETED */
+ //void set_completed(ICalTimeType val);
+ //ICalTimeType get_completed();
- /* COMPLETED */
- //void set_completed(ICalTimeType val);
- //ICalTimeType get_completed();
+ /* CONTACT */
+ //public native void set_contact(String val);
+ //public native String get_contact();
- /* CONTACT */
- //public native void set_contact(String val);
- //public native String get_contact();
+ /* CREATED */
+ //void set_created(ICalTimeType val);
+ //ICalTimeType get_created();
- /* CREATED */
- //void set_created(ICalTimeType val);
- //ICalTimeType get_created();
+ /* DESCRIPTION */
+ public native void set_description(String val);
+ public native String get_description();
- /* DESCRIPTION */
- public native void set_description(String val);
- public native String get_description();
+ /* DTEND */
+ public native void set_dtend(ICalTimeType val);
+ public native ICalTimeType get_dtend();
- /* DTEND */
- public native void set_dtend(ICalTimeType val);
- public native ICalTimeType get_dtend();
+ /* DTSTAMP */
+ public native void set_dtstamp(ICalTimeType val);
+ public native ICalTimeType get_dtstamp();
- /* DTSTAMP */
- public native void set_dtstamp(ICalTimeType val);
- public native ICalTimeType get_dtstamp();
+ /* DTSTART */
+ public native void set_dtstart(ICalTimeType val);
+ public native ICalTimeType get_dtstart();
- /* DTSTART */
- public native void set_dtstart(ICalTimeType val);
- public native ICalTimeType get_dtstart();
+ /* DUE */
+ public native void set_due(ICalTimeType val);
+ public native ICalTimeType get_due();
- /* DUE */
- public native void set_due(ICalTimeType val);
- public native ICalTimeType get_due();
+ /* DURATION */
+ public native void set_duration(ICalDurationType val);
+ public native ICalDurationType get_duration();
- /* DURATION */
- public native void set_duration(ICalDurationType val);
- public native ICalDurationType get_duration();
+ /* EXDATE */
+ public native void set_exdate(ICalTimeType val);
+ public native ICalTimeType get_exdate();
- /* EXDATE */
- public native void set_exdate(ICalTimeType val);
- public native ICalTimeType get_exdate();
+ /* EXRULE */
+ public native void set_exrule(ICalRecurrenceType val);
+ public native ICalRecurrenceType get_exrule();
- /* EXRULE */
- public native void set_exrule(ICalRecurrenceType val);
- public native ICalRecurrenceType get_exrule();
+ /* EXPAND */
+ public void set_expand(int val) {} // @-@:p0 TMA TODO
+ public int get_expand() {return 0;} // @-@:p0 TMA TODO
- /* EXPAND */
- public void set_expand(int val) {} // @-@:p0 TMA TODO
- public int get_expand() {return 0;} // @-@:p0 TMA TODO
+ /* FREEBUSY */
+ public native void set_freebusy(ICalPeriodType val);
+ public native ICalPeriodType get_freebusy();
- /* FREEBUSY */
- public native void set_freebusy(ICalPeriodType val);
- public native ICalPeriodType get_freebusy();
+ /* GEO */
+ //void set_geo(struct icalgeotype val);
+ //struct icalgeotype get_geo();
- /* GEO */
- //void set_geo(struct icalgeotype val);
- //struct icalgeotype get_geo();
+ /* LAST-MODIFIED */
+ //void set_lastmodified(ICalTimeType val);
+ //ICalTimeType get_lastmodified();
- /* LAST-MODIFIED */
- //void set_lastmodified(ICalTimeType val);
- //ICalTimeType get_lastmodified();
+ /* LOCATION */
+ public native void set_location(String val);
+ public native String get_location();
- /* LOCATION */
- public native void set_location(String val);
- public native String get_location();
+ /* MAXRESULTS */
+ //public native void set_maxresults(int val);
+ //public native int get_maxresults();
- /* MAXRESULTS */
- //public native void set_maxresults(int val);
- //public native int get_maxresults();
+ /* MAXRESULTSSIZE */
+ //public native void set_maxresultsize(int val);
+ //public native int get_maxresultsize();
- /* MAXRESULTSSIZE */
- //public native void set_maxresultsize(int val);
- //public native int get_maxresultsize();
+ /* METHOD */
+ public native void set_method(/* ICalPropertyMethod */ int val);
+ public native /* ICalPropertyMethod */ int get_method();
- /* METHOD */
- public native void set_method(/* ICalPropertyMethod */ int val);
- public native /* ICalPropertyMethod */ int get_method();
+ /* ORGANIZER */
+ public native void set_organizer(String val);
+ public native String get_organizer();
- /* ORGANIZER */
- public native void set_organizer(String val);
- public native String get_organizer();
+ /* OWNER */
+ public native void set_owner(String val);
+ public native String get_owner();
- /* OWNER */
- public native void set_owner(String val);
- public native String get_owner();
+ /* PERCENT-COMPLETE */
+ //void set_percentcomplete(int val);
+ //int get_percentcomplete();
- /* PERCENT-COMPLETE */
- //void set_percentcomplete(int val);
- //int get_percentcomplete();
+ /* PRIORITY */
+ //void set_priority(int val);
+ //int get_priority();
- /* PRIORITY */
- //void set_priority(int val);
- //int get_priority();
+ /* PRODID */
+ public native void set_prodid(String val);
+ public native String get_prodid();
- /* PRODID */
- public native void set_prodid(String val);
- public native String get_prodid();
+ /* QUERY */
+ public native void set_query(String val);
+ public native String get_query();
- /* QUERY */
- public native void set_query(String val);
- public native String get_query();
+ /* QUERYNAME */
+ public native void set_queryname(String val);
+ public native String get_queryname();
- /* QUERYNAME */
- public native void set_queryname(String val);
- public native String get_queryname();
+ /* RDATE */
+ //void set_rdate(struct icaldatetimeperiodtype val);
+ //struct icaldatetimeperiodtype get_rdate();
- /* RDATE */
- //void set_rdate(struct icaldatetimeperiodtype val);
- //struct icaldatetimeperiodtype get_rdate();
+ /* RECURRENCE-ID */
+ public native void set_recurrenceid(ICalTimeType val);
+ public native ICalTimeType get_recurrenceid();
- /* RECURRENCE-ID */
- public native void set_recurrenceid(ICalTimeType val);
- public native ICalTimeType get_recurrenceid();
-
- /* RELATED-TO */
- //public native void set_relatedto(String val);
- //public native String get_relatedto();
+ /* RELATED-TO */
+ //public native void set_relatedto(String val);
+ //public native String get_relatedto();
/* RELCALID */
public native void set_relcalid(String val);
public native String get_relcalid();
- /* REPEAT */
- public native void set_repeat(int val);
- public native int get_repeat();
+ /* REPEAT */
+ public native void set_repeat(int val);
+ public native int get_repeat();
- /* REQUEST-STATUS */
- //public native void set_requeststatus(String val);
- //public native String get_requeststatus();
+ /* REQUEST-STATUS */
+ //public native void set_requeststatus(String val);
+ //public native String get_requeststatus();
- /* RESOURCES */
- //public native void set_resources(String val);
- //public native String get_resources();
+ /* RESOURCES */
+ //public native void set_resources(String val);
+ //public native String get_resources();
- /* RRULE */
- public native void set_rrule(ICalRecurrenceType val);
- public native ICalRecurrenceType get_rrule();
+ /* RRULE */
+ public native void set_rrule(ICalRecurrenceType val);
+ public native ICalRecurrenceType get_rrule();
- /* SCOPE */
- //public native void set_scope(String val);
- //public native String get_scope();
+ /* SCOPE */
+ //public native void set_scope(String val);
+ //public native String get_scope();
- /* SEQUENCE */
- //public native void set_sequence(int val);
- //public native int get_sequence();
+ /* SEQUENCE */
+ //public native void set_sequence(int val);
+ //public native int get_sequence();
- /* STATUS */
- public native void set_status(/* ICalPropertyStatus */ int val);
- public native /* ICalPropertyStatus */ int get_status();
+ /* STATUS */
+ public native void set_status(/* ICalPropertyStatus */ int val);
+ public native /* ICalPropertyStatus */ int get_status();
- /* SUMMARY */
- public native void set_summary(String val);
- public native String get_summary();
+ /* SUMMARY */
+ public native void set_summary(String val);
+ public native String get_summary();
- /* TARGET */
- public native void set_target(String val);
- public native String get_target();
-
- /* TRANSP */
- //public native void set_transp(String val);
- //public native String get_transp();
-
- /* TRIGGER */
- public native void set_trigger(ICalTriggerType val);
- public native ICalTriggerType get_trigger();
-
- /* TZID */
- public native void set_tzid(String val);
- public native String get_tzid();
-
- /* TZNAME */
- //public native void set_tzname(String val);
- //public native String get_tzname();
-
- /* TZOFFSETFROM */
- //public native void set_tzoffsetfrom(int val);
- //public native int get_tzoffsetfrom();
-
-
- /* TZOFFSETTO */
- //public native void set_tzoffsetto(int val);
- //public native int get_tzoffsetto();
-
- /* TZURL */
- //public native void set_tzurl(String val);
- //public native String get_tzurl();
-
- /* UID */
- public native void set_uid(String val);
- public native String get_uid();
-
- /* URL */
- //public native void set_url(String val);
- //public native String get_url();
-
- /* VERSION */
- //public native void set_version(String val);
- //public native String get_version();
-
- /* X */
- //void set_x(String val);
- //String get_x();
-
- /* X-LIC-CLUSTERCOUNT */
- //void set_xlicclustercount(String val);
- //String get_xlicclustercount();
-
- /* X-LIC-ERROR */
- //void set_xlicerror(String val);
- //String get_xlicerror();
-
- /* X-LIC-MIMECHARSET */
- //void set_xlicmimecharset(String val);
- //String get_xlicmimecharset();
-
- /* X-LIC-MIMECID */
- //void set_xlicmimecid(String val);
- //String get_xlicmimecid();
-
- /* X-LIC-MIMECONTENTTYPE */
- //void set_xlicmimecontenttype(String val);
- //String get_xlicmimecontenttype();
-
- /* X-LIC-MIMEENCODING */
- //void set_xlicmimeencoding(String val);
- //String get_xlicmimeencoding();
-
- /* X-LIC-MIMEFILENAME */
- //void set_xlicmimefilename(String val);
- //String get_xlicmimefilename();
-
- /* X-LIC-MIMEOPTINFO */
- //void set_xlicmimeoptinfo(String val);
- //String get_xlicmimeoptinfo();
-
- /**
- * init the native class
- */
- private void init(long obj)
- {
- m_Obj = obj;
- }
-
- private native void init();
- private native void init(String str);
- private native void init(/* ICalPropertyKind */ int kind);
-
- /**
- * load the jni library for this class
- */
- static {
- System.loadLibrary("ical_jni");
- }
-
- public static void main(String[] args)
- {
- System.out.println("*** ICalProperty main called ok.");
- }
-
- /** pointer to C++ object */
- private long m_Obj = 0;
+ /* TARGET */
+ public native void set_target(String val);
+ public native String get_target();
+
+ /* TRANSP */
+ //public native void set_transp(String val);
+ //public native String get_transp();
+
+ /* TRIGGER */
+ public native void set_trigger(ICalTriggerType val);
+ public native ICalTriggerType get_trigger();
+
+ /* TZID */
+ public native void set_tzid(String val);
+ public native String get_tzid();
+
+ /* TZNAME */
+ //public native void set_tzname(String val);
+ //public native String get_tzname();
+
+ /* TZOFFSETFROM */
+ //public native void set_tzoffsetfrom(int val);
+ //public native int get_tzoffsetfrom();
+
+
+ /* TZOFFSETTO */
+ //public native void set_tzoffsetto(int val);
+ //public native int get_tzoffsetto();
+
+ /* TZURL */
+ //public native void set_tzurl(String val);
+ //public native String get_tzurl();
+
+ /* UID */
+ public native void set_uid(String val);
+ public native String get_uid();
+
+ /* URL */
+ //public native void set_url(String val);
+ //public native String get_url();
+
+ /* VERSION */
+ //public native void set_version(String val);
+ //public native String get_version();
+
+ /* X */
+ //void set_x(String val);
+ //String get_x();
+
+ /* X-LIC-CLUSTERCOUNT */
+ //void set_xlicclustercount(String val);
+ //String get_xlicclustercount();
+
+ /* X-LIC-ERROR */
+ //void set_xlicerror(String val);
+ //String get_xlicerror();
+
+ /* X-LIC-MIMECHARSET */
+ //void set_xlicmimecharset(String val);
+ //String get_xlicmimecharset();
+
+ /* X-LIC-MIMECID */
+ //void set_xlicmimecid(String val);
+ //String get_xlicmimecid();
+
+ /* X-LIC-MIMECONTENTTYPE */
+ //void set_xlicmimecontenttype(String val);
+ //String get_xlicmimecontenttype();
+
+ /* X-LIC-MIMEENCODING */
+ //void set_xlicmimeencoding(String val);
+ //String get_xlicmimeencoding();
+
+ /* X-LIC-MIMEFILENAME */
+ //void set_xlicmimefilename(String val);
+ //String get_xlicmimefilename();
+
+ /* X-LIC-MIMEOPTINFO */
+ //void set_xlicmimeoptinfo(String val);
+ //String get_xlicmimeoptinfo();
+
+ /**
+ * init the native class
+ */
+ private void init(long obj)
+ {
+ m_Obj = obj;
+ }
+
+ private native void init();
+ private native void init(String str);
+ private native void init(/* ICalPropertyKind */ int kind);
+
+ /**
+ * load the jni library for this class
+ */
+ static {
+ System.loadLibrary("ical_jni");
+ }
+
+ public static void main(String[] args)
+ {
+ System.out.println("*** ICalProperty main called ok.");
+ }
+
+ /** pointer to C++ object */
+ private long m_Obj = 0;
}
diff --git a/src/java/ICalValue.java b/src/java/ICalValue.java
index dbe2b8ae..f7160ff6 100644
--- a/src/java/ICalValue.java
+++ b/src/java/ICalValue.java
@@ -6,204 +6,200 @@
package net.cp.jlibical;
-public class ICalValue
+public class ICalValue
{
- /** It's not typesafe, but it's simple to understand! */
- public interface ICalValueKind
- {
- // icalvalue_kind
- int ICAL_ANY_VALUE=5000;
- int ICAL_BOOLEAN_VALUE=5001;
- int ICAL_UTCOFFSET_VALUE=5002;
- int ICAL_RECUR_VALUE=5003;
- int ICAL_METHOD_VALUE=5004;
- int ICAL_CALADDRESS_VALUE=5005;
- int ICAL_PERIOD_VALUE=5006;
- int ICAL_STATUS_VALUE=5007;
- int ICAL_BINARY_VALUE=5008;
- int ICAL_TEXT_VALUE=5009;
- int ICAL_DATETIMEDATE_VALUE=5010;
- int ICAL_DURATION_VALUE=5011;
- int ICAL_DATETIMEPERIOD_VALUE=5012;
- int ICAL_INTEGER_VALUE=5013;
- int ICAL_TIME_VALUE=5014;
- int ICAL_URI_VALUE=5015;
- int ICAL_TRIGGER_VALUE=5016;
- int ICAL_ATTACH_VALUE=5017;
- int ICAL_CLASS_VALUE=5018;
- int ICAL_FLOAT_VALUE=5019;
- int ICAL_QUERY_VALUE=5020;
- int ICAL_STRING_VALUE=5021;
- int ICAL_TRANSP_VALUE=5022;
- int ICAL_X_VALUE=5023;
- int ICAL_DATETIME_VALUE=5024;
- int ICAL_GEO_VALUE=5025;
- int ICAL_DATE_VALUE=5026;
- int ICAL_ACTION_VALUE=5027;
- int ICAL_NO_VALUE=5028;
- }
-
- /**
- * Constructor for ICalValue
- * @param obj c++ pointer
- */
- private ICalValue(long obj)
- {
- init(obj);
- }
-
- public ICalValue()
- {
- init();
- }
-
- public ICalValue(/* ICalValueKind */ int kind)
- {
- init(kind);
- }
-
- public ICalValue(/* ICalValueKind */ int kind, String str)
- {
- init(kind,str);
- }
-
- public native String as_ical_string();
- //public native boolean is_valid();
- public native /* ICalValueKind */ int isa();
- public native boolean isa_value(Object value);
-
- /* Special, non autogenerated value accessors */
- //void set_recur(struct icalrecurrencetype v);
- //struct icalrecurrencetype get_recur();
-
- public native void set_trigger(ICalTriggerType v);
- public native ICalTriggerType get_trigger();
-
- //void set_datetimeperiod(struct icaldatetimeperiodtype v);
- //struct icaldatetimeperiodtype get_datetimeperiod();
-
- //public native static /* ICalParameterXLicCompareType */ int compare(ICalValue a, ICalValue b);
-
- /* Convert enumerations */
- //public native static /* ICalValueKind */ int string_to_kind(String str);
- //public native String kind_to_string(/* ICalValueKind */ int kind);
-
- /* BOOLEAN */
- //public native int get_boolean();
- //public native void set_boolean(int v);
-
- /* UTC-OFFSET */
- //public native int get_utcoffset();
- //public native void set_utcoffset(int v);
-
- /* METHOD */
- public native /* ICalPropertyMethod */ int get_method();
- public native void set_method(/* ICalPropertyMethod */ int v);
-
- /* CAL-ADDRESS */
- //public native String get_caladdress();
- //public native void set_caladdress(String v);
-
- /* PERIOD */
- //struct icalperiodtype get_period();
- //void set_period(struct icalperiodtype v);
-
- /* STATUS */
- //public native /* ICalPropertyStatus */ int get_status();
- //public native void set_status(/* ICalPropertyStatus */ int v);
-
- /* BINARY */
- //public native String get_binary();
- //public native void set_binary(String v);
-
- /* TEXT */
- public native String get_text();
- public native void set_text(String v);
-
- /* DATE-TIME-DATE */
- //ICalTimeType get_datetimedate();
- //void set_datetimedate(ICalTimeType v);
-
- /* DURATION */
- public native ICalDurationType get_duration();
- public native void set_duration(ICalDurationType v);
-
- /* INTEGER */
- //public native int get_integer();
- //public native void set_integer(int v);
-
- /* TIME */
- //ICalTimeType get_time();
- //void set_time(ICalTimeType v);
-
- /* URI */
- //public native String get_uri();
- //public native void set_uri(String v);
-
- /* ATTACH */
- //struct icalattachtype get_attach();
- //void set_attach(struct icalattachtype v);
-
- /* CLASS */
- //public native /* ICalPropertyClass */ int get_class();
- //public native void set_class(/* ICalPropertyClass */ int v);
-
- /* FLOAT */
- //public native float get_float();
- //public native void set_float(float v);
-
- /* QUERY */
- public native String get_query();
- public native void set_query(String v);
-
- /* STRING */
- //public native String get_string();
- //public native void set_string(String v);
-
- /* TRANSP */
- //public native /* ICalPropertyTransp */ int get_transp();
- //public native void set_transp(/* ICalPropertyTransp */ int v);
-
- /* DATE-TIME */
- public native ICalTimeType get_datetime();
- public native void set_datetime(ICalTimeType v);
-
- /* GEO */
- //struct icalgeotype get_geo();
- //void set_geo(struct icalgeotype v);
+ /** It's not typesafe, but it's simple to understand! */
+ public interface ICalValueKind
+ {
+ // icalvalue_kind
+ int ICAL_ANY_VALUE=5000;
+ int ICAL_BOOLEAN_VALUE=5001;
+ int ICAL_UTCOFFSET_VALUE=5002;
+ int ICAL_RECUR_VALUE=5003;
+ int ICAL_METHOD_VALUE=5004;
+ int ICAL_CALADDRESS_VALUE=5005;
+ int ICAL_PERIOD_VALUE=5006;
+ int ICAL_STATUS_VALUE=5007;
+ int ICAL_BINARY_VALUE=5008;
+ int ICAL_TEXT_VALUE=5009;
+ int ICAL_DATETIMEDATE_VALUE=5010;
+ int ICAL_DURATION_VALUE=5011;
+ int ICAL_DATETIMEPERIOD_VALUE=5012;
+ int ICAL_INTEGER_VALUE=5013;
+ int ICAL_TIME_VALUE=5014;
+ int ICAL_URI_VALUE=5015;
+ int ICAL_TRIGGER_VALUE=5016;
+ int ICAL_ATTACH_VALUE=5017;
+ int ICAL_CLASS_VALUE=5018;
+ int ICAL_FLOAT_VALUE=5019;
+ int ICAL_QUERY_VALUE=5020;
+ int ICAL_STRING_VALUE=5021;
+ int ICAL_TRANSP_VALUE=5022;
+ int ICAL_X_VALUE=5023;
+ int ICAL_DATETIME_VALUE=5024;
+ int ICAL_GEO_VALUE=5025;
+ int ICAL_DATE_VALUE=5026;
+ int ICAL_ACTION_VALUE=5027;
+ int ICAL_NO_VALUE=5028;
+ }
+
+ /**
+ * Constructor for ICalValue
+ * @param obj c++ pointer
+ */
+ private ICalValue(long obj)
+ {
+ init(obj);
+ }
+
+ public ICalValue()
+ {
+ init();
+ }
+
+ public ICalValue(/* ICalValueKind */ int kind)
+ {
+ init(kind);
+ }
+
+ public ICalValue(/* ICalValueKind */ int kind, String str)
+ {
+ init(kind,str);
+ }
+
+ public native String as_ical_string();
+ //public native boolean is_valid();
+ public native /* ICalValueKind */ int isa();
+ public native boolean isa_value(Object value);
+
+ /* Special, non autogenerated value accessors */
+ //void set_recur(struct icalrecurrencetype v);
+ //struct icalrecurrencetype get_recur();
+
+ public native void set_trigger(ICalTriggerType v);
+ public native ICalTriggerType get_trigger();
+
+ //void set_datetimeperiod(struct icaldatetimeperiodtype v);
+ //struct icaldatetimeperiodtype get_datetimeperiod();
+
+ //public native static /* ICalParameterXLicCompareType */ int compare(ICalValue a, ICalValue b);
+
+ /* Convert enumerations */
+ //public native static /* ICalValueKind */ int string_to_kind(String str);
+ //public native String kind_to_string(/* ICalValueKind */ int kind);
+
+ /* BOOLEAN */
+ //public native int get_boolean();
+ //public native void set_boolean(int v);
+
+ /* UTC-OFFSET */
+ //public native int get_utcoffset();
+ //public native void set_utcoffset(int v);
+
+ /* METHOD */
+ public native /* ICalPropertyMethod */ int get_method();
+ public native void set_method(/* ICalPropertyMethod */ int v);
+
+ /* CAL-ADDRESS */
+ //public native String get_caladdress();
+ //public native void set_caladdress(String v);
+
+ /* PERIOD */
+ //struct icalperiodtype get_period();
+ //void set_period(struct icalperiodtype v);
+
+ /* STATUS */
+ //public native /* ICalPropertyStatus */ int get_status();
+ //public native void set_status(/* ICalPropertyStatus */ int v);
+
+ /* BINARY */
+ //public native String get_binary();
+ //public native void set_binary(String v);
+
+ /* TEXT */
+ public native String get_text();
+ public native void set_text(String v);
+
+ /* DATE-TIME-DATE */
+ //ICalTimeType get_datetimedate();
+ //void set_datetimedate(ICalTimeType v);
+
+ /* DURATION */
+ public native ICalDurationType get_duration();
+ public native void set_duration(ICalDurationType v);
+
+ /* INTEGER */
+ //public native int get_integer();
+ //public native void set_integer(int v);
+
+ /* TIME */
+ //ICalTimeType get_time();
+ //void set_time(ICalTimeType v);
+
+ /* URI */
+ //public native String get_uri();
+ //public native void set_uri(String v);
+
+ /* CLASS */
+ //public native /* ICalPropertyClass */ int get_class();
+ //public native void set_class(/* ICalPropertyClass */ int v);
+
+ /* FLOAT */
+ //public native float get_float();
+ //public native void set_float(float v);
+
+ /* QUERY */
+ public native String get_query();
+ public native void set_query(String v);
+
+ /* STRING */
+ //public native String get_string();
+ //public native void set_string(String v);
+
+ /* TRANSP */
+ //public native /* ICalPropertyTransp */ int get_transp();
+ //public native void set_transp(/* ICalPropertyTransp */ int v);
+
+ /* DATE-TIME */
+ public native ICalTimeType get_datetime();
+ public native void set_datetime(ICalTimeType v);
+
+ /* GEO */
+ //struct icalgeotype get_geo();
+ //void set_geo(struct icalgeotype v);
+
+ /* DATE */
+ //ICalTimeType get_date();
+ //void set_date(ICalTimeType v);
- /* DATE */
- //ICalTimeType get_date();
- //void set_date(ICalTimeType v);
+ /* ACTION */
+ public native /* ICalPropertyAction */ int get_action();
+ public native void set_action(/* ICalPropertyAction */ int v);
- /* ACTION */
- public native /* ICalPropertyAction */ int get_action();
- public native void set_action(/* ICalPropertyAction */ int v);
-
- /**
- * init the native class
- */
- private void init(long obj)
- {
- m_Obj = obj;
- }
-
- private native void init();
- private native void init(/* ICalValueKind */ int kind, String str);
- private native void init(/* ICalValueKind */ int kind);
-
- /**
- * load the jni library for this class
- */
- static {
- System.loadLibrary("ical_jni");
- }
-
- public static void main(String[] args)
- {
- System.out.println("*** ICalValue main called ok.");
- }
-
- /** pointer to C++ object */
- private long m_Obj = 0;
+ /**
+ * init the native class
+ */
+ private void init(long obj)
+ {
+ m_Obj = obj;
+ }
+
+ private native void init();
+ private native void init(/* ICalValueKind */ int kind, String str);
+ private native void init(/* ICalValueKind */ int kind);
+
+ /**
+ * load the jni library for this class
+ */
+ static {
+ System.loadLibrary("ical_jni");
+ }
+
+ public static void main(String[] args)
+ {
+ System.out.println("*** ICalValue main called ok.");
+ }
+
+ /** pointer to C++ object */
+ private long m_Obj = 0;
}
diff --git a/src/libical/icalattach.h b/src/libical/icalattach.h
index 6d873fe0..8b4de643 100644
--- a/src/libical/icalattach.h
+++ b/src/libical/icalattach.h
@@ -41,24 +41,4 @@ LIBICAL_ICAL_EXPORT const char *icalattach_get_url(icalattach *attach);
LIBICAL_ICAL_EXPORT unsigned char *icalattach_get_data(icalattach *attach);
-LIBICAL_ICAL_EXPORT struct icalattachtype *icalattachtype_new(void);
-
-LIBICAL_ICAL_EXPORT void icalattachtype_add_reference(struct icalattachtype *v);
-
-LIBICAL_ICAL_EXPORT void icalattachtype_free(struct icalattachtype *v);
-
-LIBICAL_ICAL_EXPORT void icalattachtype_set_url(struct icalattachtype *v, char *url);
-
-LIBICAL_ICAL_EXPORT char *icalattachtype_get_url(struct icalattachtype *v);
-
-LIBICAL_ICAL_EXPORT void icalattachtype_set_base64(struct icalattachtype *v,
- char *base64, int owns);
-
-LIBICAL_ICAL_EXPORT char *icalattachtype_get_base64(struct icalattachtype *v);
-
-LIBICAL_ICAL_EXPORT void icalattachtype_set_binary(struct icalattachtype *v,
- char *binary, int owns);
-
-LIBICAL_ICAL_EXPORT void *icalattachtype_get_binary(struct icalattachtype *v);
-
#endif /* !ICALATTACH_H */
diff --git a/src/python/LibicalWrap.i b/src/python/LibicalWrap.i
index 42827446..8452b05d 100644
--- a/src/python/LibicalWrap.i
+++ b/src/python/LibicalWrap.i
@@ -50,17 +50,6 @@ typedef int time_t;
// Ignore these declarations because there does not exist a definition for them
%ignore _icalerror_set_errno(icalerrorenum);
-%ignore icalattachtype_add_reference(struct icalattachtype* v);
-%ignore icalattachtype_get_binary(struct icalattachtype* v);
-%ignore icalattachtype_set_binary(struct icalattachtype* v, char* binary,
- int owns);
-%ignore icalattachtype_get_url(struct icalattachtype* v);
-%ignore icalattachtype_set_url(struct icalattachtype* v, char* url);
-%ignore icalattachtype_free(struct icalattachtype* v);
-%ignore icalattachtype_get_base64(struct icalattachtype* v);
-%ignore icalattachtype_new(void);
-%ignore icalattachtype_set_base64(struct icalattachtype* v, char* base64,
- int owns);
%ignore icalclassify_class_to_string(icalproperty_xlicclass c);
%ignore icalfileset_new_from_cluster(const char* path, icalcluster *cluster);
%ignore icalgauge_as_sql(icalcomponent* gauge);