Skip to content

OcaActuator#

This document describes the controller implementation of OcaActuator. This class is documented in the AES70 standard as:

Abstract base class for all actuators (i.e. classes) that affect the routing and/or content of the audio signal, or provide ancillary control functions such as power).


Overview#

Class Declaration#

namespace aes70::controller
{
  class OcaActuator : public OcaWorker
  {
  public:
    OcaActuator(std::shared_ptr<connection> connection,
            uin32_t object_number);
    OcaActuator(const OcaActuator &o);

    // Control Methods

    // Observing Properties

    // Property Changed Subscriptions
  };
}

Methods#