* Standardize header includes Update sources to match guidelines - `#include ""` when file is relative to the project - `#include <>` when file is external to the project Updated tests to mirror how a customer will include the header - `#include <>`
15 lines
321 B
C++
15 lines
321 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#include "azure/template/template_client.hpp"
|
|
#include "azure/template/version.hpp"
|
|
|
|
#include <string>
|
|
|
|
using namespace Azure::Template;
|
|
|
|
std::string const TemplateClient::ClientVersion()
|
|
{
|
|
return Version::VersionString();
|
|
}
|