Index: src/SynTree/Statement.h
===================================================================
--- src/SynTree/Statement.h	(revision be9288a525b285ac5a849a870863a162fd3d36c7)
+++ src/SynTree/Statement.h	(revision 936e9f47be7f2533aa23362d452e6b7a2a5c72fa)
@@ -9,7 +9,7 @@
 // Author           : Richard C. Bilson
 // Created On       : Mon May 18 07:44:20 2015
-// Last Modified By : Andrew Beach
-// Last Modified On : Thr Aug  3 14:08:00 2017
-// Update Count     : 69
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Wed Aug 16 16:28:55 2017
+// Update Count     : 70
 //
 
@@ -127,4 +127,5 @@
 class IfStmt : public Statement {
   public:
+	std::list<Statement *> initialization;
 	Expression *condition;
 	Statement *thenPart;
@@ -135,4 +136,6 @@
 	virtual ~IfStmt();
 
+	std::list<Statement *> &get_initialization() { return initialization; }
+	void set_initialization( std::list<Statement *> newValue ) { initialization = newValue; }
 	Expression *get_condition() { return condition; }
 	void set_condition( Expression *newValue ) { condition = newValue; }
