/** ** \file ast/seq-exp.hxx ** \brief Inline methods of ast::SeqExp. */ #pragma once #include namespace ast { inline const exps_type& SeqExp::exps_get() const { return *exps_; } inline exps_type& SeqExp::exps_get() { return *exps_; } } // namespace ast