azure-core
user_agent.hpp
Go to the documentation of this file.
1 // Copyright (c) Microsoft Corporation. All rights reserved.
2 // SPDX-License-Identifier: MIT
3 
10 #pragma once
11 
12 #include <string>
13 
14 namespace Azure { namespace Core { namespace Http { namespace _detail {
15  class UserAgentGenerator {
16  public:
17  static std::string GenerateUserAgent(
18  std::string const& componentName,
19  std::string const& componentVersion,
20  std::string const& applicationId);
21  };
22 }}}} // namespace Azure::Core::Http::_detail
Azure SDK abstractions.
Definition: azure_assert.hpp:55