#include <assert.h>#include "type.h"Include dependency graph for const.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Compounds | |
| class | const_agg |
| An aggragate constant. More... | |
| class | const_range_signed |
| class | const_range_unsigned |
| class | const_real |
| class | vhdl_const |
| Base class for VHDL constants. More... | |
Enumerations | |
| enum | { bad_constant, cn_sign, cn_unsign, cn_real, cn_aggregate } |
| Note that string constants are just array constants. More... | |
|
|
Note that string constants are just array constants.
Definition at line 30 of file const.h.
00030 { bad_constant,
00031 cn_sign, // a signed scalar constant
00032 cn_unsign, // an unsigned scalar constant
00033 cn_real, // a real constant
00034 cn_aggregate // an "aggragate" constant for either
00035 // an array or a record.
00036 };
|
1.3.3