File subexpression.hpp¶
File List > backends > cxx > include > zmbt > expr > subexpression.hpp
Go to the documentation of this file
#ifndef ZMBT_EXPR_SUBEXPRESSION_HPP_
#define ZMBT_EXPR_SUBEXPRESSION_HPP_
#include <ostream>
#include "expression.hpp"
namespace zmbt {
namespace lang {
class Expression::Subexpression : Expression
{
EncodingView ev_;
public:
Subexpression(EncodingView const& ev)
: ev_{ev}
{
}
};
} // namespace lang
} // namespace zmbt
#endif