summaryrefslogtreecommitdiff
path: root/src/ivyargument.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ivyargument.h')
-rwxr-xr-xsrc/ivyargument.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/ivyargument.h b/src/ivyargument.h
deleted file mode 100755
index 0176f21..0000000
--- a/src/ivyargument.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Ivy, C interface
- *
- * Copyright (C) 1997-2005
- * 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
- */
-#ifndef IVY_ARGUMENT_H
-#define IVY_ARGUMENT_H
-/* Module de gestion de la syntaxe des messages Ivy */
-
-typedef struct _argument *IvyArgument;
-
-IvyArgument IvyArgumentNew( int len, const void * value );
-void IvyArgumentFree( IvyArgument arg );
-int IvyArgumentGetChildCount( IvyArgument arg );
-void IvyArgumentGetValue( IvyArgument arg, int * len, const void **val );
-IvyArgument IvyArgumentGetChildrens( IvyArgument arg );
-IvyArgument IvyArgumentGetNextChild( IvyArgument arg );
-void IvyAddChild( IvyArgument arg, IvyArgument child );
-IvyArgument IvyAddChildValue( IvyArgument arg, int childvaluelen, const void* childvalue );
-
-IvyArgument IvyArgumentDeserialize( int buf_len, void* buffer, int * buf_adv);
-int IvyArgumentSerialize(IvyArgument arg, int *buf_len, void **buffer, int offset);
-
-#endif
-