Bayeux  3.4.1
Core Foundation library for SuperNEMO
variant_dependency_utils.h
Go to the documentation of this file.
1 /* Author(s) : Francois Mauger <mauger@lpccaen.in2p3.fr>
3  * Creation date : 2016-10-26
4  * Last modified : 2016-10-26
5  *
6  * Copyright (C) 2016 Francois Mauger <mauger@lpccaen.in2p3.fr>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 3 of the License, or (at
11  * your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  *
23  * Description:
24  *
25  * Utilities for variant dependency.
26  *
27  */
28 
29 #ifndef DATATOOLS_CONFIGURATION_VARIANT_DEPENDENCY_UTILS_H
30 #define DATATOOLS_CONFIGURATION_VARIANT_DEPENDENCY_UTILS_H
31 
32 // Standard library:
33 #include <memory>
34 
35 namespace datatools {
36 
37  namespace configuration {
38 
40 
41  // Type alias for smart pointer on base_dependency_logic objects;
42  typedef std::shared_ptr<base_dependency_logic> dependency_logic_ptr_type;
43 
44  } // end of namespace configuration
45 
46 } // end of namespace datatools
47 
48 #endif // DATATOOLS_CONFIGURATION_VARIANT_DEPENDENCY_UTILS_H
49 
50 // Local Variables: --
51 // mode: c++ --
52 // c-file-style: "gnu" --
53 // tab-width: 2 --
54 // End: --
std::shared_ptr< base_dependency_logic > dependency_logic_ptr_type
Definition: variant_dependency_utils.h:39
The Bayeux/datatools library top-level namespace.
Definition: algo.h:13
Base class for variant enabling logic predicates.
Definition: variant_dependency_logic.h:55