From beab8baab8a7f727f5ba65ecbd7e11decea18112 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 4 Oct 2009 09:00:19 +0200 Subject: Add --suppress-inline option --- cli/context.hxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'cli/context.hxx') diff --git a/cli/context.hxx b/cli/context.hxx index ae490c9..8063f59 100644 --- a/cli/context.hxx +++ b/cli/context.hxx @@ -13,6 +13,7 @@ #include +#include "options.hxx" #include "semantics.hxx" #include "traversal.hxx" @@ -23,6 +24,7 @@ class context public: typedef std::size_t size_t; typedef std::string string; + typedef ::options options_type; private: struct data; @@ -31,6 +33,7 @@ private: public: std::ostream& os; semantics::cli_unit& unit; + options_type const& options; string& inl; @@ -65,8 +68,7 @@ public: } public: - context (std::ostream&, - semantics::cli_unit&); + context (std::ostream&, semantics::cli_unit&, options_type const&); context (context&); -- cgit v1.1