Fixed URL for libccmio-2.6.1 (bug report #5 by Thomas Oliveira)
[foam-extend-3.2.git] / src / mesh / cfMesh / utilities / helperFunctions / helperFunctionsStringConversion.C
blob18e5a46030473d6af4e08213106b8103a093ffe8
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | cfMesh: A library for mesh generation
4    \\    /   O peration     |
5     \\  /    A nd           | Author: Franjo Juretic (franjo.juretic@c-fields.com)
6      \\/     M anipulation  | Copyright (C) Creative Fields, Ltd.
7 -------------------------------------------------------------------------------
8 License
9     This file is part of cfMesh.
11     cfMesh 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 3 of the License, or (at your
14     option) any later version.
16     cfMesh 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 cfMesh.  If not, see <http://www.gnu.org/licenses/>.
24 Description
26 \*---------------------------------------------------------------------------*/
28 #include "error.H"
29 #include "helperFunctionsStringConversion.H"
31 #include <sstream>
33 //#define DEBUG_pMesh
35 namespace Foam
38 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *//
40 namespace help
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *//
45 scalar textToScalar(const word& w)
47     std::stringstream ss;
48     ss << w;
50     double s;
51     ss >> s;
52     return s;
55 //- convert the text to label
56 label textToLabel(const word& w)
58     return label(textToScalar(w));
61 word scalarToText(const scalar s)
63     std::ostringstream ss;
64     ss << s;
66     return ss.str();
69 word labelToText(const label l)
71     std::ostringstream ss;
72     ss << l;
74     return ss.str();
77 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *//
79 } // End namespace help
81 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *//
83 } // End namespace Foam
85 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //