mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-09-10 00:32:53 +02:00
20 lines
379 B
C++
20 lines
379 B
C++
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#pragma once
|
|
|
|
#include "opentelemetry/version.h"
|
|
|
|
OPENTELEMETRY_BEGIN_NAMESPACE
|
|
namespace plugin
|
|
{
|
|
/**
|
|
* Manage the ownership of a dynamically loaded library.
|
|
*/
|
|
class DynamicLibraryHandle
|
|
{
|
|
public:
|
|
virtual ~DynamicLibraryHandle() = default;
|
|
};
|
|
} // namespace plugin
|
|
OPENTELEMETRY_END_NAMESPACE
|