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