mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- The capitalization is consistent with most other template classes, but more importantly frees up xfer() for use as method name without needing special treatment to avoid ambiguities. It seems reasonable to have different names for transfer(...) and xfer() methods, since the transfer is occuring in different directions. The xfer() method can thus replace the recently introduced zero-parameter transfer() methods. Other name candidates (eg, yield, release, etc.) were deemed too abstract.
121 lines
3.5 KiB
C++
121 lines
3.5 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
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 2 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, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
Class
|
|
Foam::coordinateSystems
|
|
|
|
Description
|
|
Provides a centralized coordinateSystem collection.
|
|
|
|
Note
|
|
Mixing normal constructors and the coordinateSystems::New constructor
|
|
may yield unexpected results.
|
|
|
|
SourceFiles
|
|
coordinateSystems.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
#ifndef coordinateSystems_H
|
|
#define coordinateSystems_H
|
|
|
|
#include "coordinateSystem.H"
|
|
#include "IOPtrList.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class coordinateSystems Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class coordinateSystems
|
|
:
|
|
public IOPtrList<coordinateSystem>
|
|
{
|
|
|
|
// Private Member Functions
|
|
|
|
//- Disallow default bitwise copy construct
|
|
coordinateSystems(const coordinateSystems&);
|
|
|
|
//- Disallow default bitwise assignment
|
|
void operator=(const coordinateSystems&);
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("coordinateSystems");
|
|
|
|
// Constructors
|
|
|
|
//- Read construct from IOobject
|
|
explicit coordinateSystems(const IOobject&);
|
|
|
|
//- Construct from IOobject and a PtrList
|
|
coordinateSystems
|
|
(
|
|
const IOobject&,
|
|
const PtrList<coordinateSystem>&
|
|
);
|
|
|
|
//- Construct from IOobject and transferring the PtrList contents
|
|
coordinateSystems
|
|
(
|
|
const IOobject&,
|
|
const Xfer<PtrList<coordinateSystem> >&
|
|
);
|
|
|
|
// Selectors
|
|
|
|
//- Return previously registered or read construct from "constant"
|
|
static const coordinateSystems& New(const objectRegistry&);
|
|
|
|
// Member Functions
|
|
|
|
//- Find and return index for a given keyword, returns -1 if not found
|
|
label find(const word& key) const;
|
|
|
|
//- Search for given keyword
|
|
bool found(const word& keyword) const;
|
|
|
|
//- Return the table of contents (list of all keywords)
|
|
wordList toc() const;
|
|
|
|
//- write data
|
|
bool writeData(Ostream&, bool subDict=true) const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|