UNPKG

aes70

Version:

A controller library for the AES70 protocol.

22 lines (20 loc) 515 B
import { make_control_class } from '../make_control_class.js'; import { OcaRoot } from './OcaRoot.js'; /** * Abstract base class for classes that represent non-audio (i.e. control and * monitoring) functions. All concrete manager objects are lockable (the * constructor of this class initializes the Root object with property Lockable * true). * @extends OcaRoot * @class OcaManager */ export const OcaManager = make_control_class( 'OcaManager', 2, '\u0001\u0003', 2, OcaRoot, [], [], [] );