diff options
Diffstat (limited to 'tiger-compiler/src/ast/string-exp.hxx')
| -rw-r--r-- | tiger-compiler/src/ast/string-exp.hxx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tiger-compiler/src/ast/string-exp.hxx b/tiger-compiler/src/ast/string-exp.hxx new file mode 100644 index 0000000..2c8a429 --- /dev/null +++ b/tiger-compiler/src/ast/string-exp.hxx @@ -0,0 +1,16 @@ +/** + ** \file ast/string-exp.hxx + ** \brief Inline methods of ast::StringExp. + */ + +#pragma once + +#include <ast/string-exp.hh> + +namespace ast +{ + + inline const std::string& StringExp::value_get() const { return value_; } + inline std::string& StringExp::value_get() { return value_; } + +} // namespace ast |
