32 #ifndef _QORE_QOREBINARYANDOPERATORNODE_H 34 #define _QORE_QOREBINARYANDOPERATORNODE_H 36 class QoreBinaryAndOperatorNode :
public QoreIntBinaryOperatorNode {
41 DLLLOCAL
void parseInitImpl(
QoreValue& val, LocalVar* oflag,
int pflag,
int& lvids,
const QoreTypeInfo*& typeInfo);
44 DLLLOCAL QoreBinaryAndOperatorNode(
const QoreProgramLocation* loc,
QoreValue left,
QoreValue right) : QoreIntBinaryOperatorNode(loc, left, right) {
47 DLLLOCAL
virtual QoreOperatorNode* copyBackground(
ExceptionSink* xsink)
const {
48 return copyBackgroundExplicit<QoreBinaryAndOperatorNode>(xsink);
The main value class in Qore, designed to be passed by value.
Definition: QoreValue.h:262
container for holding Qore-language exception information and also for registering a "thread_exit" ca...
Definition: ExceptionSink.h:46