summaryrefslogtreecommitdiff
path: root/src/theory/output_channel.h
diff options
context:
space:
mode:
authorCesare Tinelli <cesare-tinelli@uiowa.edu>2010-02-22 18:59:37 +0000
committerCesare Tinelli <cesare-tinelli@uiowa.edu>2010-02-22 18:59:37 +0000
commit9ae657c4568114eb888d9c0b8c27c09586556ff3 (patch)
tree1abb476b99c20c3c8906d8893159923eb0ccce3a /src/theory/output_channel.h
parent533ed01ce6fdd3b93130b7ba0dbeedcd807a7a1f (diff)
* Add virtual destructors to CnfStream, Theory, OutputChannel, and
ExplainOutputChannel. Safer and stops a compiler warning. * node attributes: fix compiler warnings on 64-bit. * Node: add asserts to make sure the current NodeManager is non-NULL when it's needed. This can happen when public-facing functions don't properly set the node manager, and it can look like a bug in another part of the library. Also some code format cleanup. * configure.ac, config/cvc4.m4: added --enable-static-binary (see discussion on bug 32), fixed bad configure lines (bug 19), added documentation for some things. * config.h.in: removed; it's auto-generated.
Diffstat (limited to 'src/theory/output_channel.h')
-rw-r--r--src/theory/output_channel.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/theory/output_channel.h b/src/theory/output_channel.h
index cec499a13..c530434f5 100644
--- a/src/theory/output_channel.h
+++ b/src/theory/output_channel.h
@@ -28,6 +28,14 @@ class OutputChannel {
public:
/**
+ * Destructs an OutputChannel. This implementation does nothing,
+ * but we need a virtual destructor for safety in case subclasses
+ * have a destructor.
+ */
+ virtual ~OutputChannel() {
+ }
+
+ /**
* With safePoint(), the theory signals that it is at a safe point
* and can be interrupted.
*/
@@ -68,6 +76,14 @@ class ExplainOutputChannel {
public:
/**
+ * Destructs an ExplainOutputChannel. This implementation does
+ * nothing, but we need a virtual destructor for safety in case
+ * subclasses have a destructor.
+ */
+ virtual ~ExplainOutputChannel() {
+ }
+
+ /**
* With safePoint(), the theory signals that it is at a safe point
* and can be interrupted. The default implementation never
* interrupts.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback