11 #ifndef PRESCALER_HPP_INC
12 #define PRESCALER_HPP_INC
14 #include <epicsTypes.h>
16 #include "mrf/object.h"
23 PreScaler(
const std::string& n,
EVR& o):mrf::ObjectInst<PreScaler>(n),owner(o){};
24 virtual ~PreScaler()=0;
26 virtual epicsUInt32 prescaler()
const=0;
27 virtual void setPrescaler(epicsUInt32)=0;
Base interface for EVRs.
Definition: evr.h:46
User implementation hook.
Definition: object.h:460