Falaise  4.0.1
SuperNEMO Software Toolkit
falaise.h
Go to the documentation of this file.
1 //! \file falaise/falaise.h
2 //! \brief Provide system init for Falaise internals
3 //! \details
4 //
5 // Copyright (c) 2013 by Ben Morgan <bmorgan.warwick@gmail.com>
6 // Copyright (c) 2013 by The University of Warwick
7 // Copyright (c) 2013 by Francois Mauger <mauger@lpccaen.in2p3.fr>
8 // Copyright (c) 2013 by Université de Caen
9 //
10 // This file is part of Falaise.
11 //
12 // Falaise 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 // Falaise 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 Falaise. If not, see <http://www.gnu.org/licenses/>.
24 
25 #ifndef FALAISE_FALAISE_H
26 #define FALAISE_FALAISE_H
27 // Standard Library
28 #include <string>
29 
30 // This project
31 
32 namespace falaise {
33 /// Initialize resources of the Falaise library
34 void initialize(int argc_ = 0, char* argv_[] = 0, uint32_t flags_ = 0);
35 
36 /// Terminate resources of the Falaise library
37 void terminate();
38 } // namespace falaise
39 
40 #endif // FALAISE_FALAISE_H
void initialize(int argc_=0, char *argv_[]=0, uint32_t flags_=0)
Initialize resources of the Falaise library.
Definition: metadata_utils.h:35
void terminate()
Terminate resources of the Falaise library.