/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2004-2011 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 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::Table Description Templated table container data entry. Items are stored in a list of Tuple2's. First column is always stored as scalar entries. Data is read in the form, e.g. for an entry \ that is (scalar, vector): \verbatim table ( 0.0 (1 2 3) 1.0 (4 5 6) ); \endverbatim SourceFiles Table.C \*---------------------------------------------------------------------------*/ #ifndef Table_H #define Table_H #include "DataEntry.H" #include "Tuple2.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { template class Table; template Ostream& operator<< ( Ostream&, const Table& ); /*---------------------------------------------------------------------------*\ Class Table Declaration \*---------------------------------------------------------------------------*/ template class Table : public DataEntry { // Private data //- Table data List > table_; // Private Member Functions //- Disallow default bitwise assignment void operator=(const Table&); public: //- Runtime type information TypeName("table"); // Constructors //- Construct from entry name and Istream Table(const word& entryName, Istream& is); //- Copy constructor Table(const Table& tbl); //- Construct and return a clone virtual tmp > clone() const { return tmp >(new Table(*this)); } //- Destructor virtual ~Table(); // Member Functions //- Return Table value Type value(const scalar x) const; //- Integrate between two (scalar) values Type integrate(const scalar x1, const scalar x2) const; //- Ostream Operator friend Ostream& operator<< ( Ostream&, const Table& ); }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository # include "Table.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //