Bayeux  3.4.1
Core Foundation library for SuperNEMO
bayeux.h
Go to the documentation of this file.
1 //
5 // Copyright (c) 2013 by Ben Morgan <bmorgan.warwick@gmail.com>
6 // Copyright (c) 2013 by The University of Warwick
7 // Copyright (c) 2013-2017 by Francois Mauger <mauger@lpccaen.in2p3.fr>
8 // Copyright (c) 2013-2017 by Université de Caen
9 //
10 // This file is part of Bayeux.
11 //
12 // Bayeux is free software: you can redistribute it and/or modify
13 // it under the terms of the GNU General Public License as published by
14 // the Free Software Foundation, either version 3 of the License, or
15 // (at your option) any later version.
16 //
17 // Bayeux is distributed in the hope that it will be useful,
18 // but WITHOUT ANY WARRANTY; without even the implied warranty of
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 // GNU General Public License for more details.
21 //
22 // You should have received a copy of the GNU General Public License
23 // along with Bayeux. If not, see <http://www.gnu.org/licenses/>.
24 //
25 
26 #ifndef BAYEUX_BAYEUX_H
27 #define BAYEUX_BAYEUX_H
28 
29 // Standard Library:
30 #include <string>
31 
32 // Third Party:
33 // - Boost:
34 #include <boost/noncopyable.hpp>
35 #include <boost/cstdint.hpp>
36 
37 // This project:
38 #include <datatools/logger.h>
39 #include <bayeux/bayeux_init.h>
40 
42 namespace bayeux {
43 
45  bool is_initialized();
46 
48  void initialize(int argc_ = 0,
49  char * argv_[] = nullptr,
50  uint32_t flags_ = 0);
51 
53  void terminate();
54 
55 }
56 
57 #endif // BAYEUX_BAYEUX_H
58 
59 // Local Variables: --
60 // mode: c++ --
61 // c-file-style: "gnu" --
62 // tab-width: 2 --
63 // End: --
Bayeux initialization flags.
void initialize(int argc_=0, char *argv_[]=nullptr, uint32_t flags_=0)
Initialize the Bayeux library core functionnalities.
bool is_initialized()
Check if Bayeux library core functionnalities are initialized.
void terminate()
Terminate the Bayeux library core functionnalities.
Utilities for logging information.
Top-level namespace of the Bayeux library.
Definition: bayeux.h:42