diff options
Diffstat (limited to 'project2/if.h')
-rw-r--r-- | project2/if.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/project2/if.h b/project2/if.h index 0a262c2..6482d7c 100644 --- a/project2/if.h +++ b/project2/if.h @@ -33,7 +33,8 @@ class If : public NoOutputExecute, public View, public IfSet { typedef Storage<View>::Objects SubViews; SubViews subViews; typedef Storage<NoOutputExecute>::Objects SubNOEs; - SubNOEs subNOEs; + SubNOEs normNOEs; + SubNOEs errorNOEs; const std::string & getName() const; }; |