ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / dynamicMesh / polyTopoChange / polyMeshModifier / polyMeshModifier.C
blobecad881894322f0808e183f47757433e04ece84d
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 Description
25     Virtual base class for mesh modifiers.
27 \*---------------------------------------------------------------------------*/
29 #include "polyMeshModifier.H"
30 #include "dictionary.H"
31 #include "polyTopoChanger.H"
32 #include "polyMesh.H"
34 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
36 namespace Foam
38     defineTypeNameAndDebug(polyMeshModifier, 0);
40     defineRunTimeSelectionTable(polyMeshModifier, dictionary);
43 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
45 // Construct from components
46 Foam::polyMeshModifier::polyMeshModifier
48     const word& name,
49     const label index,
50     const polyTopoChanger& mme,
51     const bool act
54     name_(name),
55     index_(index),
56     topoChanger_(mme),
57     active_(act)
61 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
63 Foam::polyMeshModifier::~polyMeshModifier()
67 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
69 const Foam::polyTopoChanger& Foam::polyMeshModifier::topoChanger() const
71     return topoChanger_;
75 // * * * * * * * * * * * * * * * Friend Operators  * * * * * * * * * * * * * //
77 Foam::Ostream& Foam::operator<<(Ostream& os, const polyMeshModifier& pmm)
79     pmm.write(os);
80     os.check("Ostream& operator<<(Ostream& f, const polyMeshModifier& pmm)");
81     return os;
85 // ************************************************************************* //