summaryrefslogtreecommitdiff
path: root/src/smt/command_list.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt/command_list.h')
-rw-r--r--src/smt/command_list.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/smt/command_list.h b/src/smt/command_list.h
new file mode 100644
index 000000000..954ef9629
--- /dev/null
+++ b/src/smt/command_list.h
@@ -0,0 +1,41 @@
+/********************* */
+/*! \file command_list.h
+ ** \verbatim
+ ** Original author: mdeters
+ ** Major contributors: none
+ ** Minor contributors (to current version): none
+ ** This file is part of the CVC4 prototype.
+ ** Copyright (c) 2009-2012 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.\endverbatim
+ **
+ ** \brief A context-sensitive list of Commands, and their cleanup
+ **
+ ** A context-sensitive list of Commands, and their cleanup.
+ **/
+
+#include "cvc4_private.h"
+
+#ifndef __CVC4__SMT__COMMAND_LIST_H
+#define __CVC4__SMT__COMMAND_LIST_H
+
+#include "context/cdlist.h"
+
+namespace CVC4 {
+
+class Command;
+
+namespace smt {
+
+struct CommandCleanup {
+ void operator()(Command** c);
+};/* struct CommandCleanup */
+
+typedef context::CDList<Command*, CommandCleanup> CommandList;
+
+}/* CVC4::smt namespace */
+}/* CVC4 namespace */
+
+#endif /* __CVC4__SMT__COMMAND_LIST_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback