You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
472 B
27 lines
472 B
// Copyright The OpenTelemetry Authors |
|
// SPDX-License-Identifier: Apache-2.0 |
|
|
|
#pragma once |
|
|
|
#include "opentelemetry/version.h" |
|
|
|
OPENTELEMETRY_BEGIN_NAMESPACE |
|
namespace trace |
|
{ |
|
class Tracer; |
|
} // namespace trace |
|
|
|
namespace plugin |
|
{ |
|
/** |
|
* Manage the ownership of a dynamically loaded tracer. |
|
*/ |
|
class TracerHandle |
|
{ |
|
public: |
|
virtual ~TracerHandle() = default; |
|
|
|
virtual trace::Tracer &tracer() const noexcept = 0; |
|
}; |
|
} // namespace plugin |
|
OPENTELEMETRY_END_NAMESPACE
|
|
|