/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation \\/ 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::csvTableReader Description Reads an interpolation table from a file - CSV-format SourceFiles tableReader.C \*---------------------------------------------------------------------------*/ #ifndef csvTableReader_H #define csvTableReader_H #include "tableReader.H" #include "labelList.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class csvTableReader Declaration \*---------------------------------------------------------------------------*/ template class csvTableReader : public tableReader { // Private data //- Does the file have a header line? const bool headerLine_; //- Column of the time const label timeColumn_; //- Labels of the components const labelList componentColumns_; //- Read the next value from the splitted string Type readValue(const List&); //- Separator character const char separator_; public: //- Runtime type information TypeName("csv"); // Constructors //- Construct from dictionary csvTableReader(const dictionary& dict); //- Construct and return a copy virtual autoPtr > clone() const { return autoPtr > ( new csvTableReader ( *this ) ); } //- Destructor virtual ~csvTableReader(); // Member Functions //- Read the table virtual void operator()(const fileName&, List >&); //- Read 2D table virtual void operator() ( const fileName&, List > > >& ); //- Write the remaining parameters virtual void write(Ostream& os) const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository # include "csvTableReader.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //