/** ** \file ast/string-exp.hxx ** \brief Inline methods of ast::StringExp. */ #pragma once #include namespace ast { inline const std::string& StringExp::value_get() const { return value_; } inline std::string& StringExp::value_get() { return value_; } } // namespace ast