summaryrefslogtreecommitdiff
path: root/src/analysis/walkitem.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-09 14:26:43 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-09 14:26:43 +0300
commit8832c4b4f96d553b0cf6374548cb493655fe662c (patch)
tree6d839d7a95723127aa7f6b6da9e973618c089b12 /src/analysis/walkitem.h
parentb7d171da34d5339c1c83fb5a95efc80881e374b2 (diff)
downloadparanucker-8832c4b4f96d553b0cf6374548cb493655fe662c.tar.gz
paranucker-8832c4b4f96d553b0cf6374548cb493655fe662c.tar.bz2
paranucker-8832c4b4f96d553b0cf6374548cb493655fe662c.tar.xz
paranucker-8832c4b4f96d553b0cf6374548cb493655fe662c.zip
Add basic walking tree parameters.
Diffstat (limited to 'src/analysis/walkitem.h')
-rw-r--r--src/analysis/walkitem.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/analysis/walkitem.h b/src/analysis/walkitem.h
new file mode 100644
index 0000000..dee65dc
--- /dev/null
+++ b/src/analysis/walkitem.h
@@ -0,0 +1,39 @@
+/*
+ * Copyright (C) 2015 Andrei Karas
+ *
+ * This file is part of AstDumper.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef ANALYSIS_WALKITEM_H
+#define ANALYSIS_WALKITEM_H
+
+#include <set>
+#include <string>
+
+struct WalkItem
+{
+ WalkItem() :
+ checkNullVars(),
+ stopWalking(false)
+ {
+ }
+
+ std::set<std::string> checkNullVars;
+ bool stopWalking;
+};
+
+
+#endif // ANALYSIS_WALKITEM_H