Line | |
---|
1 | /*
|
---|
2 | ** Copyright (C) 2016-2017, NumFOCUS Foundation.
|
---|
3 | **
|
---|
4 | ** Licensed under a 3-clause BSD style license - see LICENSE
|
---|
5 | **
|
---|
6 | ** This file is NOT derived from SOFA sources
|
---|
7 | */
|
---|
8 |
|
---|
9 |
|
---|
10 | #ifndef _ERFA_EXTRA_H
|
---|
11 | #define _ERFA_EXTRA_H
|
---|
12 |
|
---|
13 | #ifdef __cplusplus
|
---|
14 | extern "C" {
|
---|
15 | #endif
|
---|
16 |
|
---|
17 |
|
---|
18 | /*
|
---|
19 | ** Returns the package version
|
---|
20 | ** as defined in configure.ac
|
---|
21 | ** in string format
|
---|
22 | */
|
---|
23 | const char* eraVersion();
|
---|
24 |
|
---|
25 | /*
|
---|
26 | ** Returns the package major version
|
---|
27 | ** as defined in configure.ac
|
---|
28 | ** as integer
|
---|
29 | */
|
---|
30 | int eraVersionMajor();
|
---|
31 |
|
---|
32 | /*
|
---|
33 | ** Returns the package minor version
|
---|
34 | ** as defined in configure.ac
|
---|
35 | ** as integer
|
---|
36 | */
|
---|
37 | int eraVersionMinor();
|
---|
38 |
|
---|
39 | /*
|
---|
40 | ** Returns the package micro version
|
---|
41 | ** as defined in configure.ac
|
---|
42 | ** as integer
|
---|
43 | */
|
---|
44 | int eraVersionMicro();
|
---|
45 |
|
---|
46 | /*
|
---|
47 | ** Returns the orresponding SOFA version
|
---|
48 | ** as defined in configure.ac
|
---|
49 | ** in string format
|
---|
50 | */
|
---|
51 | const char* eraSofaVersion();
|
---|
52 |
|
---|
53 |
|
---|
54 | #ifdef __cplusplus
|
---|
55 | }
|
---|
56 | #endif
|
---|
57 |
|
---|
58 | #endif /* _ERFA_EXTRA_H */
|
---|
59 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.