summaryrefslogtreecommitdiffabout
path: root/libical/src/libical/icalparameterimpl.h
Unidiff
Diffstat (limited to 'libical/src/libical/icalparameterimpl.h') (more/less context) (show whitespace changes)
-rw-r--r--libical/src/libical/icalparameterimpl.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/libical/src/libical/icalparameterimpl.h b/libical/src/libical/icalparameterimpl.h
new file mode 100644
index 0000000..2d0fdd6
--- a/dev/null
+++ b/libical/src/libical/icalparameterimpl.h
@@ -0,0 +1,52 @@
1/* -*- Mode: C -*-
2 ======================================================================
3 FILE: icalparameterimpl.h
4 CREATOR: eric 09 May 1999
5
6 $Id$
7 $Locker$
8
9
10 (C) COPYRIGHT 2000, Eric Busboom, http://www.softwarestudio.org
11
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of either:
14
15 The LGPL as published by the Free Software Foundation, version
16 2.1, available at: http://www.fsf.org/copyleft/lesser.html
17
18 Or:
19
20 The Mozilla Public License Version 1.0. You may obtain a copy of
21 the License at http://www.mozilla.org/MPL/
22
23 The original code is icalderivedparameters.{c,h}
24
25 Contributions from:
26 Graham Davison (g.m.davison@computer.org)
27
28 ======================================================================*/
29#ifdef HAVE_CONFIG_H
30#include <config.h>
31#endif
32
33#ifndef ICALPARAMETER_IMPL
34#define ICALPARAMETER_IMPL
35
36#include "icalparameter.h"
37#include "icalproperty.h"
38
39struct icalparameter_impl
40{
41 icalparameter_kind kind;
42 char id[5];
43 int size;
44 const char* string;
45 const char* x_name;
46 icalproperty* parent;
47
48 int data;
49};
50
51
52#endif /*ICALPARAMETER_IMPL*/