AlexaClientSDK  1.25.0
A cross-platform, modular SDK for interacting with the Alexa Voice Service
SDKVersion.h
Go to the documentation of this file.
1 /*
2  * SDKVersion.h
3  *
4  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License").
7  * You may not use this file except in compliance with the License.
8  * A copy of the License is located at
9  *
10  * http://aws.amazon.com/apache2.0/
11  *
12  * or in the "license" file accompanying this file. This file is distributed
13  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
14  * express or implied. See the License for the specific language governing
15  * permissions and limitations under the License.
16  */
17 
18 #ifndef ALEXA_CLIENT_SDK_AVSCOMMON_UTILS_INCLUDE_AVSCOMMON_UTILS_SDKVERSION_H_
19 #define ALEXA_CLIENT_SDK_AVSCOMMON_UTILS_INCLUDE_AVSCOMMON_UTILS_SDKVERSION_H_
20 
21 #include <string>
22 
23 namespace alexaClientSDK {
24 namespace avsCommon {
25 namespace utils {
26 
29 namespace sdkVersion {
30 
31 inline static std::string getCurrentVersion() {
32  return "1.25.0";
33 }
34 
35 inline static int getMajorVersion() {
36  return 1;
37 }
38 
39 inline static int getMinorVersion() {
40  return 25;
41 }
42 
43 inline static int getPatchVersion() {
44  return 0;
45 }
46 
47 } // namespace sdkVersion
48 } // namespace utils
49 } // namespace avsCommon
50 } // namespace alexaClientSDK
51 
52 #endif // ALEXA_CLIENT_SDK_AVSCOMMON_UTILS_INCLUDE_AVSCOMMON_UTILS_SDKVERSION_H_
static int getMajorVersion()
Definition: SDKVersion.h:35
Whether or not curl logs should be emitted.
Definition: AVSConnectionManager.h:36
static int getPatchVersion()
Definition: SDKVersion.h:43
static int getMinorVersion()
Definition: SDKVersion.h:39
static std::string getCurrentVersion()
Definition: SDKVersion.h:31

AlexaClientSDK 1.25.0 - Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0