GNU Radio's GSM Package
constants.h
Go to the documentation of this file.
1 /* -*- 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 
29 namespace 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  /*!
52  * \brief return just the minor version defined by cmake
53  */
54  GRGSM_API const std::string minor_version();
55 
56  /*!
57  * \brief return just the maint version defined by cmake
58  */
59  GRGSM_API const std::string maint_version();
60  } /* namespace gsm */
61 } /* namespace gr */
62 
63 #endif /* INCLUDED_GRGSM_CONSTANTS_H */
gr::gsm::version
const GRGSM_API std::string version()
return version string defined by cmake (GrVersion.cmake)
gr::gsm::maint_version
const GRGSM_API std::string maint_version()
return just the maint version defined by cmake
gr::gsm::major_version
const GRGSM_API std::string major_version()
return just the major version defined by cmake
gr::gsm::minor_version
const GRGSM_API std::string minor_version()
return just the minor version defined by cmake
gr
Definition: constants.h:29
GRGSM_API
#define GRGSM_API
Definition: api.h:31
gr::gsm::api_version
const GRGSM_API std::string api_version()
return just the api version defined by cmake
gr::gsm::build_date
const GRGSM_API std::string build_date()
return date/time of build, as set when 'cmake' is run
api.h