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#
- ClassID: 1.1.1
- Header:
aes70/controller/OcaActuator.hpp
- Namespace:
aes70::controller
- Inheritance: aes70::controller::OcaWorker, aes70::controller::OcaRoot, aes70::controller::object
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
};
}