32 #ifndef _QORE_QORELOGICALNOTOPERATORNODE_H
34 #define _QORE_QORELOGICALNOTOPERATORNODE_H
36 class QoreLogicalNotOperatorNode :
public QoreSingleExpressionOperatorNode<QoreOperatorNode> {
42 DLLLOCAL
virtual void parseInitImpl(
QoreValue& val, LocalVar* oflag,
int pflag,
int& lvids,
const QoreTypeInfo*& typeInfo);
44 DLLLOCAL
virtual const QoreTypeInfo* getTypeInfo()
const {
49 DLLLOCAL QoreLogicalNotOperatorNode(
const QoreProgramLocation* loc,
QoreValue exp) : QoreSingleExpressionOperatorNode<QoreOperatorNode>(loc, exp) {
57 DLLLOCAL
virtual const char* getTypeName()
const {
58 return LogicalNot_str.getBuffer();
61 DLLLOCAL
virtual QoreOperatorNode* copyBackground(
ExceptionSink* xsink)
const {
62 return copyBackgroundExplicit<QoreLogicalNotOperatorNode>(xsink);