/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011 OpenFOAM Foundation
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see .
Class
Foam::polyRemoveFace
Description
Class containing data for face removal.
\*---------------------------------------------------------------------------*/
#ifndef polyRemoveFace_H
#define polyRemoveFace_H
#include "label.H"
#include "topoAction.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class polyRemoveFace Declaration
\*---------------------------------------------------------------------------*/
class polyRemoveFace
:
public topoAction
{
// Private data
//- Face ID
label faceID_;
//- Merge faceID or -1
label mergeFaceID_;
public:
// Static data members
//- Runtime type information
TypeName("removeFace");
// Constructors
//- Construct null. Used for constructing lists
polyRemoveFace()
:
faceID_(-1),
mergeFaceID_(-1)
{}
//- Construct from components
polyRemoveFace(const label faceID, const label mergeFaceID = -1)
:
faceID_(faceID),
mergeFaceID_(mergeFaceID)
{}
//- Construct and return a clone
virtual autoPtr clone() const
{
return autoPtr(new polyRemoveFace(*this));
}
// Default Destructor
// Member Functions
//- Return face ID
label faceID() const
{
return faceID_;
}
//- Return merge face ID
label mergeFaceID() const
{
return mergeFaceID_;
}
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //