OPAL (Object Oriented Parallel Accelerator Library)  2021.1.99
OPAL
Configure.h
Go to the documentation of this file.
1 //
2 // Namespace Configure
3 // The OPAL configurator.
4 // This class must be modified to configure the commands to be contained
5 // in an executable OPAL program. For each command an exemplar object
6 // is constructed and linked to the main directory. This exemplar is then
7 // available to the OPAL parser for cloning.
8 // This class could be part of the class OpalData. It is separated from
9 // that class and opale into a special module in order to reduce
10 // dependencies between modules.
11 //
12 // Copyright (c) 200x - 2020, Paul Scherrer Institut, Villigen PSI, Switzerland
13 // All rights reserved
14 //
15 // This file is part of OPAL.
16 //
17 // OPAL is free software: you can redistribute it and/or modify
18 // it under the terms of the GNU General Public License as published by
19 // the Free Software Foundation, either version 3 of the License, or
20 // (at your option) any later version.
21 //
22 // You should have received a copy of the GNU General Public License
23 // along with OPAL. If not, see <https://www.gnu.org/licenses/>.
24 //
25 #ifndef OPAL_Configure_HH
26 #define OPAL_Configure_HH
27 
28 namespace Configure {
29 
31  extern void configure();
32 };
33 
34 #endif // OPAL_Configure_HH
void configure()
Configure all commands.
Definition: Configure.cpp:245