initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / dynamicMesh / polyTopoChange / polyTopoChange / removeObject / polyRemovePoint.H
blobda643dac2a7584dc9814d3f1990afb0d6d0fae91
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::polyRemovePoint
28 Description
29     Class containing data for point removal.
31 \*---------------------------------------------------------------------------*/
33 #ifndef polyRemovePoint_H
34 #define polyRemovePoint_H
36 #include "label.H"
37 #include "topoAction.H"
39 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 namespace Foam
44 /*---------------------------------------------------------------------------*\
45                        Class polyRemovePoint Declaration
46 \*---------------------------------------------------------------------------*/
48 class polyRemovePoint
50     public topoAction
52     // Private data
54         //- Point ID
55         label pointID_;
57         //- Merge point ID or -1
58         label mergePointID_;
61 public:
63     // Static data members
65         //- Runtime type information
66         TypeName("removePoint");
69     // Constructors
71         //- Construct null.  Used for constructing lists
72         polyRemovePoint()
73         :
74             pointID_(-1),
75             mergePointID_(-1)
76         {}
78         //- Construct from components
79         polyRemovePoint(const label pointID, const label mergePointID = -1)
80         :
81             pointID_(pointID),
82             mergePointID_(mergePointID)
83         {}
85         //- Construct and return a clone
86         virtual autoPtr<topoAction> clone() const
87         {
88             return autoPtr<topoAction>(new polyRemovePoint(*this));
89         }
92     // Default Destructor
95     // Member Functions
97         //- Return point ID
98         label pointID() const
99         {
100             return pointID_;
101         }
103         label mergePointID() const
104         {
105             return mergePointID_;
106         }
110 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
112 } // End namespace Foam
114 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
116 #endif
118 // ************************************************************************* //