/* %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.
 */

#ifndef VAR_DEFS_H
#define VAR_DEFS_H

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

#ifndef VAR_EXPORTS_H
#include "var_exports.h"
#endif

/* This structure represents a variable definition: */
struct Var_struct {
	Str		comment;	/* Comment at end-of-line */
	Str		name;		/* Variable name */
	int		position;	/* Position in file */
	Type_ref	type_ref;	/* Variable type */
};

#endif /* VAR_DEFS_H */

