@@ -41,8 +41,8 @@ This file is part of the QuarkTS++ OS distribution.
41
41
#ifndef QLIBS_CPP_H
42
42
#define QLIBS_CPP_H
43
43
44
- #define QLIBS_CPP_VERSION " 1.3.1 "
45
- #define QLIBS_CPP_VERNUM ( 131 )
44
+ #define QLIBS_CPP_VERSION " 1.3.2 "
45
+ #define QLIBS_CPP_VERNUM ( 132 )
46
46
#define QLIBS_CPP_CAPTION " qLibs++" QLIBS_CPP_VERSION
47
47
48
48
#include < include/qlibs_types.hpp>
@@ -60,6 +60,30 @@ This file is part of the QuarkTS++ OS distribution.
60
60
#include < include/interp1.hpp>
61
61
#include < include/algorithm.hpp>
62
62
63
- using namespace qlibs ;
63
+ namespace qlibs {
64
+ namespace build {
65
+ constexpr const uint32_t number = 2351 ;
66
+ constexpr const char * date = __DATE__;
67
+ constexpr const char * time = __TIME__;
68
+ constexpr const char * std = " c++11" ;
69
+ }
70
+ namespace version {
71
+ constexpr const char * str = QLIBS_CPP_VERSION;
72
+ constexpr const uint8_t number = QLIBS_CPP_VERNUM;
73
+ constexpr const uint8_t mayor = 1U ;
74
+ constexpr const uint8_t minor = 3U ;
75
+ constexpr const uint8_t rev = 2U ;
76
+ }
77
+ namespace product {
78
+ constexpr const char * author = " J. Camilo Gomez C." ;
79
+ constexpr const char * copyright = " Copyright (C) 2012 J. Camilo Gomez C. All Rights Reserved." ;
80
+ constexpr const char * name = " qLibs++" ;
81
+ constexpr const char * category = " Library" ;
82
+ constexpr const char * caption = QLIBS_CPP_CAPTION;
83
+ constexpr const char * compliance = " MISRAC++2008,SEI-CERT" ;
84
+ constexpr const char * license = " MIT" ;
85
+ constexpr const char * source_model = " Open Source" ;
86
+ }
87
+ };
64
88
65
89
#endif /* QOS_CPP_H*/
0 commit comments