toctave

t(iny)octave
git clone https://0xff.ir/g/toctave.git
Log | Files | Refs | README

version.hpp (929B)


      1 /*
      2     Copyright 2015 Adobe
      3     Distributed under the Boost Software License, Version 1.0.
      4     (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
      5 */
      6 
      7 //  See http://www.stlab.cc for documentation
      8 
      9 #ifndef STLAB_VERSION_HPP
     10 #define STLAB_VERSION_HPP
     11 
     12 //
     13 //  Caution: this is the only stlab header that is guaranteed
     14 //  to change with every stlab release. Including this header
     15 //  will cause a recompile every time a new stlab version is
     16 //  used.
     17 //
     18 //  STLAB_VERSION % 100 is the patch level
     19 //  STLAB_VERSION / 100 % 1000 is the minor version
     20 //  STLAB_VERSION / 100000 is the major version
     21 
     22 #define STLAB_VERSION 100602
     23 
     24 //
     25 //  STLAB_LIB_VERSION must be defined to be the same as STLAB_VERSION
     26 //  but as a *string* in the form "x_y[_z]" where x is the major version
     27 //  number, y is the minor version number, and z is the patch level if not 0.
     28 
     29 #define STLAB_LIB_VERSION "1_6_2"
     30 
     31 #endif