32#ifndef _QORE_INTERN_FUNCTIONALOPERATOR_H
34#define _QORE_INTERN_FUNCTIONALOPERATOR_H
36class FunctionalOperatorInterface;
38class FunctionalOperator {
40 enum FunctionalValueType { list, single, nothing };
42 DLLLOCAL
virtual ~FunctionalOperator() {
45 DLLLOCAL FunctionalOperatorInterface* getFunctionalIterator(FunctionalValueType& value_type,
ExceptionSink* xsink)
const;
47 DLLLOCAL
virtual FunctionalOperatorInterface* getFunctionalIteratorImpl(FunctionalValueType& value_type,
ExceptionSink* xsink)
const = 0;
container for holding Qore-language exception information and also for registering a "thread_exit" ca...
Definition: ExceptionSink.h:50