1*17f65170SRuslan Bukin /*
2*17f65170SRuslan Bukin  * \file       ocsd_version.cpp
3*17f65170SRuslan Bukin  * \brief      OpenCSD :
4*17f65170SRuslan Bukin  *
5*17f65170SRuslan Bukin  * \copyright  Copyright (c) 2015, ARM Limited. All Rights Reserved.
6*17f65170SRuslan Bukin  */
7*17f65170SRuslan Bukin 
8*17f65170SRuslan Bukin /*
9*17f65170SRuslan Bukin  * Redistribution and use in source and binary forms, with or without modification,
10*17f65170SRuslan Bukin  * are permitted provided that the following conditions are met:
11*17f65170SRuslan Bukin  *
12*17f65170SRuslan Bukin  * 1. Redistributions of source code must retain the above copyright notice,
13*17f65170SRuslan Bukin  * this list of conditions and the following disclaimer.
14*17f65170SRuslan Bukin  *
15*17f65170SRuslan Bukin  * 2. Redistributions in binary form must reproduce the above copyright notice,
16*17f65170SRuslan Bukin  * this list of conditions and the following disclaimer in the documentation
17*17f65170SRuslan Bukin  * and/or other materials provided with the distribution.
18*17f65170SRuslan Bukin  *
19*17f65170SRuslan Bukin  * 3. Neither the name of the copyright holder nor the names of its contributors
20*17f65170SRuslan Bukin  * may be used to endorse or promote products derived from this software without
21*17f65170SRuslan Bukin  * specific prior written permission.
22*17f65170SRuslan Bukin  *
23*17f65170SRuslan Bukin  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' AND
24*17f65170SRuslan Bukin  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
25*17f65170SRuslan Bukin  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26*17f65170SRuslan Bukin  * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
27*17f65170SRuslan Bukin  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
28*17f65170SRuslan Bukin  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29*17f65170SRuslan Bukin  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
30*17f65170SRuslan Bukin  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31*17f65170SRuslan Bukin  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32*17f65170SRuslan Bukin  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33*17f65170SRuslan Bukin  */
34*17f65170SRuslan Bukin 
35*17f65170SRuslan Bukin #include "ocsd_if_version.h"
36*17f65170SRuslan Bukin #include "common/ocsd_version.h"
37*17f65170SRuslan Bukin 
vers_num()38*17f65170SRuslan Bukin const uint32_t ocsdVersion::vers_num()
39*17f65170SRuslan Bukin {
40*17f65170SRuslan Bukin     return OCSD_VER_NUM;
41*17f65170SRuslan Bukin }
42*17f65170SRuslan Bukin 
vers_str()43*17f65170SRuslan Bukin const char *ocsdVersion::vers_str()
44*17f65170SRuslan Bukin {
45*17f65170SRuslan Bukin     return OCSD_VER_STRING;
46*17f65170SRuslan Bukin }
47*17f65170SRuslan Bukin 
48*17f65170SRuslan Bukin /* End of File ocsd_version.cpp */
49