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