Skip to content

OcaSummingPoint#

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

Actuator with no control parameters of its own, used as a simple node to represent summations in block signal flows. Signal path connections are controlled by methods inherited from OcaWorker.


Overview#

Class Declaration#

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

    // Control Methods

    // Observing Properties

    // Property Changed Subscriptions
  };
}

Methods#