aboutsummaryrefslogtreecommitdiffstats
path: root/parser
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2009-08-20 13:52:40 -0300
committerHugo Lima <hugo.lima@openbossa.org>2009-08-20 13:52:40 -0300
commitffef36fe259606a91be17b52efa1d98fbfda7a7e (patch)
tree70ca2bee56bac623c13c93e1ce968bc5937a51d0 /parser
parentdfa423ac3109e0e40cba5f43471b34b98ed3189d (diff)
Add missing include directives in the C++ parser code.
Diffstat (limited to 'parser')
-rw-r--r--parser/rpp/pp-engine.h6
-rw-r--r--parser/rpp/pp-environment.h2
2 files changed, 8 insertions, 0 deletions
diff --git a/parser/rpp/pp-engine.h b/parser/rpp/pp-engine.h
index 79e74c1aa..f5cbe2223 100644
--- a/parser/rpp/pp-engine.h
+++ b/parser/rpp/pp-engine.h
@@ -25,6 +25,12 @@
#ifndef PP_ENGINE_H
#define PP_ENGINE_H
+#include <string>
+#include <vector>
+#include "pp-scanner.h"
+#include "pp-macro-expander.h"
+#include "pp-environment.h"
+
namespace rpp
{
diff --git a/parser/rpp/pp-environment.h b/parser/rpp/pp-environment.h
index 6003c0820..be3ef3837 100644
--- a/parser/rpp/pp-environment.h
+++ b/parser/rpp/pp-environment.h
@@ -26,7 +26,9 @@
#define PP_ENVIRONMENT_H
#include <vector>
+#include <string>
#include <cstring>
+#include "pp-macro.h"
namespace rpp
{