summaryrefslogtreecommitdiff
path: root/src/main/interactive_shell.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-11-11 12:56:03 -0600
committerGitHub <noreply@github.com>2020-11-11 12:56:03 -0600
commit80930ce4f6d21b417028a5ec207ddfbd7d85e66d (patch)
tree6c616c78fc05609983d1d4742fa5d0e69b8aa22e /src/main/interactive_shell.h
parent7d3198d18304eb6ea5f087a82defb4952fce31b9 (diff)
Move symbol manager to src/expr/ (#5420)
This is required since symbol manager will use context dependent data structures (in its cpp). This is required since classes in src/parser/ are not allowed to include private headers.
Diffstat (limited to 'src/main/interactive_shell.h')
-rw-r--r--src/main/interactive_shell.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/interactive_shell.h b/src/main/interactive_shell.h
index b00f8a8f4..4d60d3445 100644
--- a/src/main/interactive_shell.h
+++ b/src/main/interactive_shell.h
@@ -33,9 +33,10 @@ class Solver;
namespace parser {
class Parser;
- class SymbolManager;
}/* CVC4::parser namespace */
+class SymbolManager;
+
class CVC4_PUBLIC InteractiveShell
{
const Options& d_options;
@@ -51,7 +52,7 @@ class CVC4_PUBLIC InteractiveShell
static const unsigned s_historyLimit = 500;
public:
- InteractiveShell(api::Solver* solver, parser::SymbolManager* sm);
+ InteractiveShell(api::Solver* solver, SymbolManager* sm);
/**
* Close out the interactive session.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback