Libical API Documentation  3.0
icalparameterimpl.h
1 /*======================================================================
2  FILE: icalparameterimpl.h
3  CREATOR: eric 09 May 1999
4 
5  (C) COPYRIGHT 2000, Eric Busboom <eric@softwarestudio.org>
6  http://www.softwarestudio.org
7 
8  This library is free software; you can redistribute it and/or modify
9  it under the terms of either:
10 
11  The LGPL as published by the Free Software Foundation, version
12  2.1, available at: http://www.gnu.org/licenses/lgpl-2.1.html
13 
14  Or:
15 
16  The Mozilla Public License Version 2.0. You may obtain a copy of
17  the License at http://www.mozilla.org/MPL/
18 
19  The original code is icalderivedparameters.{c,h}
20 
21  Contributions from:
22  Graham Davison (g.m.davison@computer.org)
23 ======================================================================*/
24 
25 #ifndef ICALPARAMETERIMPL_H
26 #define ICALPARAMETERIMPL_H
27 
28 #include "icalproperty.h"
29 
31 {
32  icalparameter_kind kind;
33  char id[5];
34  int size;
35  const char *string;
36  const char *x_name;
37  icalproperty *parent;
38 
39  int data;
40 };
41 
42 #endif /*ICALPARAMETER_IMPL */
Definition: icalparameterimpl.h:30