11 #ifndef OUTPUT_HPP_INC
12 #define OUTPUT_HPP_INC
14 #include "mrf/object.h"
16 #include <epicsTypes.h>
29 explicit Output(
const std::string& n) : mrf::ObjectInst<Output>(n) {}
43 virtual epicsUInt32 source()
const=0;
44 virtual void setSource(epicsUInt32)=0;
46 virtual bool enabled()
const=0;
47 virtual void enable(
bool)=0;
User implementation hook.
Definition: object.h:460