Version
menu_open
link

include/AK/AkWwiseSDKVersion.cs

Go to the documentation of this file.
00001 /*******************************************************************************
00002 The content of this file includes portions of the AUDIOKINETIC Wwise Technology
00003 released in source code form as part of the SDK installer package.
00004 
00005 Commercial License Usage
00006 
00007 Licensees holding valid commercial licenses to the AUDIOKINETIC Wwise Technology
00008 may use this file in accordance with the end user license agreement provided 
00009 with the software or, alternatively, in accordance with the terms contained in a
00010 written agreement between you and Audiokinetic Inc.
00011 
00012 Apache License Usage
00013 
00014 Alternatively, this file may be used under the Apache License, Version 2.0 (the 
00015 "Apache License"); you may not use this file except in compliance with the 
00016 Apache License. You may obtain a copy of the Apache License at 
00017 http://www.apache.org/licenses/LICENSE-2.0.
00018 
00019 Unless required by applicable law or agreed to in writing, software distributed
00020 under the Apache License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
00021 OR CONDITIONS OF ANY KIND, either express or implied. See the Apache License for
00022 the specific language governing permissions and limitations under the License.
00023 
00024   Version: <VERSION>  Build: <BUILDNUMBER>
00025   Copyright (c) <COPYRIGHTYEAR> Audiokinetic Inc.
00026 *******************************************************************************/
00027 
00028 using System;
00029 using System.Text;
00030 
00031 namespace AK
00032 {
00033     namespace Wwise
00034     {
00035         public static class Version
00036         {
00037             #region Wwise SDK Version - Numeric values
00038 
00039             /// <summary>
00040             /// Wwise SDK major version
00041             /// </summary>
00042             public const int Major = 2017;
00043 
00044             /// <summary>
00045             /// Wwise SDK minor version
00046             /// </summary>
00047             public const int Minor = 1;
00048 
00049             /// <summary>
00050             /// Wwise SDK sub-minor version
00051             /// </summary>
00052             public const int SubMinor = 9;
00053 
00054             /// <summary>
00055             /// Wwise SDK build number
00056             /// </summary>
00057             public const int Build = 6461;
00058             
00059             /// <summary>
00060             /// Wwise SDK build nickname
00061             /// </summary>
00062             public const string Nickname = "";
00063 
00064             #endregion Wwise SDK Version - Numeric values
00065 
00066             #region Wwise SDK Version - String values
00067 
00068             /// <summary>
00069             /// String representing the Wwise SDK version
00070             /// </summary>
00071             public static string VersionName
00072             {
00073                 get
00074                 {
00075                     return "v" + Major + "." + Minor + "." + SubMinor + (Nickname.Length == 0 ? "" : "_" + Nickname);
00076                 }
00077             }
00078 
00079             /// <summary>
00080             /// String representing the Wwise SDK version
00081             /// </summary>
00082             public const string AssemblyVersion = "2017.1.9.6461";
00083 
00084             /// <summary>
00085             /// String representing the Wwise SDK copyright notice
00086             /// </summary>
00087             public const string CopyrightNotice = "\xA9 2006-2017. Audiokinetic Inc. All rights reserved.";
00088 
00089             #endregion Wwise SDK Version - String values
00090         }
00091     }
00092 }

Was this page helpful?

Need Support?

Questions? Problems? Need more info? Contact us, and we can help!

Visit our Support page

Tell us about your project. We're here to help.

Register your project and we'll help you get started with no strings attached!

Get started with Wwise