return this->algorithms;
}
-METHOD(tcg_pts_attr_meas_algo_t, set_algorithms, void,
- private_tcg_pts_attr_meas_algo_t *this,
- pts_meas_algorithms_t algorithms)
-{
- this->algorithms = algorithms;
-}
-
/**
* Described in header.
*/
.destroy = _destroy,
},
.get_algorithms = _get_algorithms,
- .set_algorithms = _set_algorithms,
},
.vendor_id = PEN_TCG,
.type = selection ? TCG_PTS_MEAS_ALGO_SELECTION : TCG_PTS_MEAS_ALGO,
.destroy = _destroy,
},
.get_algorithms = _get_algorithms,
- .set_algorithms = _set_algorithms,
},
.vendor_id = PEN_TCG,
.type = selection ? TCG_PTS_MEAS_ALGO_SELECTION : TCG_PTS_MEAS_ALGO,
*/
pts_meas_algorithms_t (*get_algorithms)(tcg_pts_attr_meas_algo_t *this);
- /**
- * Set PTS Measurement Algorithm Set
- *
- * @param flags set of algorithms
- */
- void (*set_algorithms)(tcg_pts_attr_meas_algo_t *this,
- pts_meas_algorithms_t algorithms);
-
};
/**