| 1234567891011121314151617181920 | // Copyright The OpenTelemetry Authors// SPDX-License-Identifier: Apache-2.0#pragma once#include "opentelemetry/version.h"OPENTELEMETRY_BEGIN_NAMESPACEnamespace plugin{/** * Manage the ownership of a dynamically loaded library. */class DynamicLibraryHandle{public:  virtual ~DynamicLibraryHandle() = default;};}  // namespace pluginOPENTELEMETRY_END_NAMESPACE
 |