summaryrefslogtreecommitdiff
path: root/src/expr/declaration_scope.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/declaration_scope.h')
-rw-r--r--src/expr/declaration_scope.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/expr/declaration_scope.h b/src/expr/declaration_scope.h
index 17140c850..6d89f5f4e 100644
--- a/src/expr/declaration_scope.h
+++ b/src/expr/declaration_scope.h
@@ -2,10 +2,10 @@
/*! \file declaration_scope.h
** \verbatim
** Original author: cconway
- ** Major contributors: none
- ** Minor contributors (to current version): dejan, mdeters
+ ** Major contributors: mdeters
+ ** Minor contributors (to current version): none
** This file is part of the CVC4 prototype.
- ** Copyright (c) 2009, 2010 The Analysis of Computer Systems Group (ACSys)
+ ** Copyright (c) 2009, 2010, 2011 The Analysis of Computer Systems Group (ACSys)
** Courant Institute of Mathematical Sciences
** New York University
** See the file COPYING in the top-level source directory for licensing
@@ -49,7 +49,7 @@ class CVC4_PUBLIC ScopeException : public Exception {
*/
class CVC4_PUBLIC DeclarationScope {
/** The context manager for the scope maps. */
- context::Context *d_context;
+ context::Context* d_context;
/** A map for expressions. */
context::CDMap<std::string, Expr, StringHashFunction> *d_exprMap;
@@ -180,6 +180,9 @@ public:
/** Push a scope level. */
void pushScope() throw();
+ /** Get the current level of this declaration scope. */
+ size_t getLevel() const throw();
+
};/* class DeclarationScope */
}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback