1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
/* $Id$
*
* TypeDeclaration: AST Class representing a type declaration.
*
* Copyright (C) 2007-2009 FAUmachine Team <info@faumachine.org>.
* This program is free software. You can redistribute it and/or modify it
* under the terms of the GNU General Public License, either version 2 of
* the License, or (at your option) any later version. See COPYING.
*/
#ifndef __TYPE_DECLARATION_HPP_INCLUDED
#define __TYPE_DECLARATION_HPP_INCLUDED
#include "frontend/ast/AttributableDeclaration.hpp"
#include "frontend/ast/Location.hpp"
#include "frontend/ast/Types.hpp"
namespace ast {
//! one generic VHDL type declaration.
/** This class represents one VHDL type declaration.
*/
class TypeDeclaration : public AttributableDeclaration {
public:
//! c'tor
/** @param declName name of the declared type.
* @param loc location of the declaration.
* @param base base type of this declaration.
*/
TypeDeclaration(
std::string *declName,
Location loc,
enum BaseType base
) : AttributableDeclaration(declName, loc),
baseType(base),
isUniversal(false) {}
/** the base type of this declared type. */
enum BaseType baseType;
//! is this either universal_integer or universal_real?
bool isUniversal;
};
}; /* namespace ast */
#endif /* __TYPE_DECLARATION_HPP_INCLUDED */
|