summaryrefslogtreecommitdiff
path: root/src/ivyargument.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ivyargument.h')
-rwxr-xr-xsrc/ivyargument.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/ivyargument.h b/src/ivyargument.h
new file mode 100755
index 0000000..e54a444
--- /dev/null
+++ b/src/ivyargument.h
@@ -0,0 +1,28 @@
+/*
+ * Ivy, C interface
+ *
+ * Copyright (C) 1997-2000
+ * Centre d'Études de la Navigation Aérienne
+ *
+ * Argument message comtent
+ *
+ * Authors: François-Régis Colin <fcolin@cena.fr>
+ *
+ * $Id$
+ *
+ * Please refer to file version.h for the
+ * copyright notice regarding this software
+ */
+
+/* Module de gestion de la syntaxe des messages Ivy */
+
+typedef struct _argument *IvyArgument;
+
+IvyArgument IvyArgumentNew( const char * expression );
+void IvyArgumentFree( IvyArgument arg );
+const char * IvyArgumentGetValue( IvyArgument arg );
+IvyArgument IvyArgumentGetNextChild( IvyArgument arg );
+IvyArgument IvyAddChild( IvyArgument arg, const char* childvalue );
+IvyArgument IvyArgumentDeserialize( int fd );
+void IvyArgumentSerialize(IvyArgument arg, int fd );
+