Files
tww/include/d/d_a_obj.h
T
2023-09-10 12:14:15 -07:00

15 lines
289 B
C++

#ifndef D_A_OBJ
#define D_A_OBJ
#include "f_op/f_op_actor_mng.h"
class daObj {
public:
template <typename T>
static int PrmAbstract(const fopAc_ac_c* actor, T width, T shift) {
return ((1 << width) - 1) & (fopAcM_GetParam(actor) >> shift);
}
};
#endif /* D_A_OBJ */