* test/unit/Makefile.am, test/unit/expr/attribute_white.h,
[cvc5.git] / src / theory / interrupted.h
1 /********************* */
2 /** interrupted.h
3 ** Original author: mdeters
4 ** Major contributors: none
5 ** Minor contributors (to current version): none
6 ** This file is part of the CVC4 prototype.
7 ** Copyright (c) 2009, 2010 The Analysis of Computer Systems Group (ACSys)
8 ** Courant Institute of Mathematical Sciences
9 ** New York University
10 ** See the file COPYING in the top-level source directory for licensing
11 ** information.
12 **
13 ** The theory output channel interface.
14 **/
15
16 #include "cvc4_private.h"
17
18 #ifndef __CVC4__THEORY__INTERRUPTED_H
19 #define __CVC4__THEORY__INTERRUPTED_H
20
21 #include "util/exception.h"
22
23 namespace CVC4 {
24 namespace theory {
25
26 class Interrupted : public CVC4::Exception {
27 };/* class Interrupted */
28
29 }/* CVC4::theory namespace */
30 }/* CVC4 namespace */
31
32 #endif /* __CVC4__THEORY__INTERRUPTED_H */