Skip to content

OcaBasicSensor#

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

Abstract base class for basic sensors.


Overview#

Class Declaration#

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

    // Control Methods

    // Observing Properties

    // Property Changed Subscriptions
  };
}

Methods#