/** ** \file ast/type-constructor.hxx ** \brief Inline methods of ast::TypeConstructor. */ #pragma once #include #include namespace ast { // FIXME DONE: Some code was deleted here. inline void TypeConstructor::created_type_set(const type::Type* typ) { reference_ = typ; } inline const type::Type* TypeConstructor::created_type_get() const { return reference_; } } // namespace ast