117f65170SRuslan Bukin /*
217f65170SRuslan Bukin * \file ocsd_version.cpp
317f65170SRuslan Bukin * \brief OpenCSD :
417f65170SRuslan Bukin *
517f65170SRuslan Bukin * \copyright Copyright (c) 2015, ARM Limited. All Rights Reserved.
617f65170SRuslan Bukin */
717f65170SRuslan Bukin
817f65170SRuslan Bukin /*
917f65170SRuslan Bukin * Redistribution and use in source and binary forms, with or without modification,
1017f65170SRuslan Bukin * are permitted provided that the following conditions are met:
1117f65170SRuslan Bukin *
1217f65170SRuslan Bukin * 1. Redistributions of source code must retain the above copyright notice,
1317f65170SRuslan Bukin * this list of conditions and the following disclaimer.
1417f65170SRuslan Bukin *
1517f65170SRuslan Bukin * 2. Redistributions in binary form must reproduce the above copyright notice,
1617f65170SRuslan Bukin * this list of conditions and the following disclaimer in the documentation
1717f65170SRuslan Bukin * and/or other materials provided with the distribution.
1817f65170SRuslan Bukin *
1917f65170SRuslan Bukin * 3. Neither the name of the copyright holder nor the names of its contributors
2017f65170SRuslan Bukin * may be used to endorse or promote products derived from this software without
2117f65170SRuslan Bukin * specific prior written permission.
2217f65170SRuslan Bukin *
2317f65170SRuslan Bukin * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' AND
2417f65170SRuslan Bukin * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
2517f65170SRuslan Bukin * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2617f65170SRuslan Bukin * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
2717f65170SRuslan Bukin * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2817f65170SRuslan Bukin * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
2917f65170SRuslan Bukin * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
3017f65170SRuslan Bukin * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3117f65170SRuslan Bukin * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
3217f65170SRuslan Bukin * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3317f65170SRuslan Bukin */
3417f65170SRuslan Bukin
35*fc502085SRuslan Bukin #include "opencsd/ocsd_if_version.h"
3617f65170SRuslan Bukin #include "common/ocsd_version.h"
3717f65170SRuslan Bukin
vers_num()3817f65170SRuslan Bukin const uint32_t ocsdVersion::vers_num()
3917f65170SRuslan Bukin {
4017f65170SRuslan Bukin return OCSD_VER_NUM;
4117f65170SRuslan Bukin }
4217f65170SRuslan Bukin
vers_str()4317f65170SRuslan Bukin const char *ocsdVersion::vers_str()
4417f65170SRuslan Bukin {
4517f65170SRuslan Bukin return OCSD_VER_STRING;
4617f65170SRuslan Bukin }
4717f65170SRuslan Bukin
4817f65170SRuslan Bukin /* End of File ocsd_version.cpp */
49