Class Control

Class Documentation

class Control

Methods for a control structure.

An control structure has the following fields:

structure
    double limitLow
    double limitHigh
    double minStep
This is a class that holds values corresponding to the fields in a control structure. It is meant to be used together with pvControl which allows values to be copied between an control structure and this class. This class should not be extended.

Public Functions

inline Control()

Constructor

inline double getLow() const

get limitLow

Returns

the current value.

inline double getHigh() const

get limitHigh

Returns

the current value.

inline double getMinStep() const

get minStep

Returns

the current value.

inline void setLow(double value)

set limitLow

Parameters

value – The new value.

inline void setHigh(double value)

set limitHigh

Parameters

value – The new value.

inline void setMinStep(double value)

set minStep

Parameters

value – The new value.