summaryrefslogtreecommitdiff
path: root/src/context/context.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2009-11-17 17:06:57 +0000
committerMorgan Deters <mdeters@gmail.com>2009-11-17 17:06:57 +0000
commit61330b862f7b5565f70e3c1f4d26a8c51a0f534a (patch)
tree60d102ef1e49ee8b1f0b905a5620d2d823c3ba34 /src/context/context.h
parent0201aa29bea8467e5cc07f2d0af68a4da3e86ec1 (diff)
from meeting
Diffstat (limited to 'src/context/context.h')
-rw-r--r--src/context/context.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/context/context.h b/src/context/context.h
new file mode 100644
index 000000000..fce2f0b8d
--- /dev/null
+++ b/src/context/context.h
@@ -0,0 +1,45 @@
+/********************* -*- C++ -*- */
+/** context.h
+ ** This file is part of the CVC4 prototype.
+ ** Copyright (c) 2009 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
+ ** information.
+ **
+ **/
+
+#ifndef __CVC4_CONTEXT_H
+#define __CVC4_CONTEXT_H
+
+namespace CVC4 {
+
+class Context;
+
+class ContextManager {
+public:
+ void switchContext(Context);
+ Context snapshot();
+};/* class ContextManager */
+
+class ContextObject {
+public:
+ void snapshot();
+ void restore();
+};/* class ContextObject */
+
+template <class T>
+class CDO;
+
+template <class T>
+class CDMap;
+
+template <class T>
+class CDList;
+
+template <class T>
+class CDSet;
+
+}/* CVC4 namespace */
+
+#endif /* __CVC4_CONTEXT_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback