blob: 9b6638088bae8e8882155739e13c113cd0725924 [file] [log] [blame]
Piotr Krysikbb961c12017-08-24 15:35:42 +02001/* -*- c++ -*- */
2/*
3 * Copyright 2006,2009,2013 Free Software Foundation, Inc.
4 *
5 * This file is part of GNU Radio
6 *
7 * GNU Radio is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3, or (at your option)
10 * any later version.
11 *
12 * GNU Radio is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Radio; see the file COPYING. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street,
20 * Boston, MA 02110-1301, USA.
21 */
22
23#ifndef INCLUDED_GRGSM_CONSTANTS_H
24#define INCLUDED_GRGSM_CONSTANTS_H
25
26#include <grgsm/api.h>
27#include <string>
28
29namespace gr {
30 namespace gsm{
31 /*!
32 * \brief return date/time of build, as set when 'cmake' is run
33 */
34 GRGSM_API const std::string build_date();
35
36 /*!
37 * \brief return version string defined by cmake (GrVersion.cmake)
38 */
39 GRGSM_API const std::string version();
40
41 /*!
42 * \brief return just the major version defined by cmake
43 */
44 GRGSM_API const std::string major_version();
45
46 /*!
47 * \brief return just the api version defined by cmake
48 */
49 GRGSM_API const std::string api_version();
50
51 /*!
Piotr Krysikdea05742017-08-25 21:55:41 +020052 * \brief return just the minor version defined by cmake
Piotr Krysikbb961c12017-08-24 15:35:42 +020053 */
54 GRGSM_API const std::string minor_version();
Piotr Krysikdea05742017-08-25 21:55:41 +020055
56 /*!
57 * \brief return just the maint version defined by cmake
58 */
59 GRGSM_API const std::string maint_version();
Piotr Krysikbb961c12017-08-24 15:35:42 +020060 } /* namespace gsm */
61} /* namespace gr */
62
63#endif /* INCLUDED_GRGSM_CONSTANTS_H */