unthreadedInitialise.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2017-2018 OpenFOAM Foundation
9 -------------------------------------------------------------------------------
10 License
11  This file is part of OpenFOAM.
12 
13  OpenFOAM is free software: you can redistribute it and/or modify it
14  under the terms of the GNU General Public License as published by
15  the Free Software Foundation, either version 3 of the License, or
16  (at your option) any later version.
17 
18  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21  for more details.
22 
23  You should have received a copy of the GNU General Public License
24  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 
26 Class
27  Foam::unthreadedInitialise
28 
29 \*---------------------------------------------------------------------------*/
30 
31 #ifndef unthreadedInitialise_H
32 #define unthreadedInitialise_H
33 
35 
36 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
37 
38 namespace Foam
39 {
40 namespace fileOperations
41 {
42 
43 /*---------------------------------------------------------------------------*\
44  Class unthreadedInitialise Declaration
45 \*---------------------------------------------------------------------------*/
46 
48 :
50 {
51 public:
52 
53  // Constructors
54 
55  //- Construct from components
56  unthreadedInitialise(int& argc, char**& argv)
57  :
58  fileOperationInitialise(argc, argv)
59  {}
60 
61 
62  //- Destructor
63  virtual ~unthreadedInitialise() = default;
64 
65 
66  // Member Functions
67 
68  //- Needs threading
69  virtual bool needsThreading() const
70  {
71  return false;
72  }
73 };
74 
75 
76 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
77 
78 } // End namespace fileOperations
79 } // End namespace Foam
80 
81 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
82 
83 #endif
84 
85 // ************************************************************************* //
fileOperationInitialise.H
Foam::fileOperations::fileOperationInitialise
Definition: fileOperationInitialise.H:46
Foam::fileOperations::unthreadedInitialise::~unthreadedInitialise
virtual ~unthreadedInitialise()=default
Destructor.
Foam::fileOperations::unthreadedInitialise
Definition: unthreadedInitialise.H:46
Foam
Namespace for OpenFOAM.
Definition: atmBoundaryLayer.C:33
Foam::fileOperations::unthreadedInitialise::needsThreading
virtual bool needsThreading() const
Needs threading.
Definition: unthreadedInitialise.H:68
Foam::fileOperations::unthreadedInitialise::unthreadedInitialise
unthreadedInitialise(int &argc, char **&argv)
Construct from components.
Definition: unthreadedInitialise.H:55