/* %Z%%M% %I% %E% */

/*
 * Copyright (c) 1992, 1995 by Wayne C. Gramlich.
 * All rights reserved.
 *
 * Permission to use, copy, modify, distribute, and sell this software
 * for any purpose is hereby granted without fee provided that the above
 * copyright notice and this permission are retained.  The author makes
 * no representations about the suitability of this software for any purpose.
 * It is provided "as is" without express or implied warranty.
 */

/* This file contains declarations for generate manipulation routines: */

#ifndef GENERATE_EXPORTS_H
#define GENERATE_EXPORTS_H

#ifndef CALL_TYPES_H
#include "call_types.h"
#endif

#ifndef GEN_TYPES_H
#include "gen_types.h"
#endif

#ifndef GENERATE_TYPES_H
#include "generate_types.h"
#endif

#ifndef HEAP_TYPES_H
#include "heap_types.h"
#endif

#ifndef MODULE_TYPES_H
#include "module_types.h"
#endif

#ifndef PARSER_TYPES_H
#include "parser_types.h"
#endif

#ifndef STR_TYPES_H
#include "str_types.h"
#endif

#ifndef TYPE_TYPES_H
#include "type_types.h"
#endif

#ifndef UNIX_STDIO_H
#include "unix_stdio.h"
#endif

#ifndef VECTOR_TYPES_H
#include "vector_types.h"
#endif

#ifndef PARSER_TYPES_H
#include "parser_types.h"
#endif

extern Generate	generate_parse(Parser);
extern void	generate_print(Generate, Stdio);
extern void	generate_type_def_routine(Generate, Type_def, int, Parser);
extern void	generate_type_def_routines(Type_def, Parser);
extern void	generate_routines_convert(Type_def, Convert);
extern Str	generate_unparse(Generate_kind);

#endif /* GENERATE_EXPORTS_H */

