summaryrefslogtreecommitdiffstats
path: root/src/jaegertracing/opentelemetry-cpp/examples/common/metrics_foo_library/foo_library.h
blob: 2f84bcc34f9f2b860c4981ed0a425704a10ae2c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0

#pragma once
#ifndef ENABLE_METRICS_PREVIEW
#  include <string>

class foo_library
{
public:
  static void counter_example(const std::string &name);
  static void histogram_example(const std::string &name);
  static void observable_counter_example(const std::string &name);
};
#endif