AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
Histogram.h
1
5#pragma once
6
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSMap.h>
9#include <smithy/Smithy_EXPORTS.h>
10
11namespace smithy {
12 namespace components {
13 namespace tracing {
17 class SMITHY_API Histogram {
18 public:
19 virtual ~Histogram() = default;
20
27 virtual void record(double value, Aws::Map<Aws::String, Aws::String> attributes) = 0;
28 };
29 }
30 }
31}
virtual void record(double value, Aws::Map< Aws::String, Aws::String > attributes)=0
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
Definition AWSMap.h:20