🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
ExprMatch.hpp
浏览该文件的文档.
1
20
21#pragma once
22
23#include "AstGlobal.h"
24#include "Expr.hpp"
25
26AST_NAMESPACE_BEGIN
27
28
31class ExprMatch: public Expr
32{
33public:
34 ExprMatch() = default;
35 ~ExprMatch() = default;
36};
37
38AST_NAMESPACE_END
匹配表达式
定义 ExprMatch.hpp:32
表达式基类
定义 Expr.hpp:39