Skip to content

OcaManager#

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

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).


Overview#

Class Declaration#

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

    // Control Methods

    // Observing Properties

    // Property Changed Subscriptions
  };
}

Methods#