summaryrefslogtreecommitdiff
path: root/src/util/sexpr.i
blob: 5d78142f3e676878d2b45366c10192d66871e7d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%{
#include "util/sexpr.h"
%}

%ignore CVC4::operator<<(std::ostream&, const SExpr&);
%ignore CVC4::operator<<(std::ostream&, SExpr::SexprTypes);

// for Java and the like
%extend CVC4::SExpr {
  std::string toString() const { return self->getValue(); }
};/* CVC4::SExpr */

%rename(equals) CVC4::SExpr::operator==(const SExpr&) const;
%ignore CVC4::SExpr::operator!=(const SExpr&) const;

%include "util/sexpr.h"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback