Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / src / surfMesh / surfZone / surfZoneIdentifier / surfZoneIdentifier.C
blobbeedd041b0f7adaa38fd7644df8b735b34b24e2c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "surfZoneIdentifier.H"
27 #include "dictionary.H"
29 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
31 Foam::surfZoneIdentifier::surfZoneIdentifier()
33     name_(word::null),
34     index_(0),
35     geometricType_(word::null)
39 Foam::surfZoneIdentifier::surfZoneIdentifier
41     const word& name,
42     const label index,
43     const word& geometricType
46     name_(name),
47     index_(index),
48     geometricType_(geometricType)
52 Foam::surfZoneIdentifier::surfZoneIdentifier
54     const word& name,
55     const dictionary& dict,
56     const label index
59     name_(name),
60     index_(index)
62     dict.readIfPresent("geometricType", geometricType_);
66 Foam::surfZoneIdentifier::surfZoneIdentifier
68     const surfZoneIdentifier& p,
69     const label index
72     name_(p.name()),
73     index_(index),
74     geometricType_(p.geometricType())
78 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
80 Foam::surfZoneIdentifier::~surfZoneIdentifier()
84 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
87 void Foam::surfZoneIdentifier::write(Ostream& os) const
89     if (geometricType_.size())
90     {
91         os.writeKeyword("geometricType") << geometricType_
92             << token::END_STATEMENT << nl;
93     }
97 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
99 // bool Foam::surfZoneIdentifier::operator!=
100 // (
101 //     const surfZoneIdentifier& p
102 // ) const
103 // {
104 //     return !(*this == p);
105 // }
108 // bool Foam::surfZoneIdentifier::operator==
109 // (
110 //     const surfZoneIdentifier& p
111 // ) const
112 // {
113 //     return geometricType() == p.geometricType() && name() == p.name();
114 // }
117 // * * * * * * * * * * * * * * * Friend Operators  * * * * * * * * * * * * * //
119 // Foam::Istream& Foam::operator>>(Istream& is, surfZoneIdentifier& p)
120 // {
121 //     is >> p.name_ >> p.geometricType_;
123 //     return is;
124 // }
127 Foam::Ostream& Foam::operator<<(Ostream& os, const surfZoneIdentifier& p)
129     p.write(os);
130     os.check
131     (
132         "Ostream& operator<<(Ostream&, const surfZoneIdentifier&)"
133     );
134     return os;
138 // ************************************************************************* //