Skip to content

OcaSignalInput#

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

A set of one or more non-network signal inputs. Number of channels shall be set at construction time.

This class has no native properties or methods - they are all inherited from OcaWorker and above. It is defined as a separate class as an aid to enumeration and signal flow definition.


Overview#

Class Declaration#

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

    // Control Methods

    // Observing Properties

    // Property Changed Subscriptions
  };
}

Methods#