initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / utilities / mesh / manipulation / setSet / writeFuns.H
blob1c958a1f2584731a84cfa2a4fcde9317c4ca2c71
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM 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 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM 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 OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::writeFunctions
28 Description
29     Various functions for collecting and writing binary data.
31 SourceFiles
32     writeFunctions.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef writeFunctions_H
37 #define writeFunctions_H
39 #include "labelList.H"
40 #include "floatScalar.H"
41 #include "OFstream.H"
42 #include "DynamicList.H"
43 #include "point.H"
45 using namespace Foam;
47 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
49 namespace Foam
53 /*---------------------------------------------------------------------------*\
54                            Class writeFuns Declaration
55 \*---------------------------------------------------------------------------*/
57 class writeFuns
59     //- Swap halves of word.
60     static void swapWord(label& word32);
61     static void swapWords(const label nWords, label* words32);
63 public:
65     //- Write ascii or binary. If binary optionally in-place swaps argument
66     static void write(std::ostream&, const bool, DynamicList<floatScalar>&);
67     static void write(std::ostream&, const bool, DynamicList<label>&);
69     //- Write ascii or binary. If binary optionally in-place swaps argument
70     static void write(std::ostream&, const bool, List<floatScalar>&);
71     static void write(std::ostream&, const bool, labelList&);
73     //- Append point to DynamicList
74     static void insert(const point&, DynamicList<floatScalar>& dest);
76     //- Append elements of labelList to DynamicList
77     static void insert(const labelList&, DynamicList<label>&);
78     //- Append elements of scalarList to DynamicList
79     static void insert(const List<scalar>&, DynamicList<floatScalar>&);
81     //- Append elements of scalarList to DynamicList using map
82     static void insert
83     (
84         const labelList& map,
85         const List<scalar>& source,
86         DynamicList<floatScalar>&
87     );
89     //- Append points to DynamicList of floats
90     static void insert(const List<point>& source, DynamicList<floatScalar>&);
91     //- As above but using map
92     static void insert
93     (
94         const labelList& map,
95         const List<point>& source,
96         DynamicList<floatScalar>&
97     );
102 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
104 } // End namespace Foam
107 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
109 #endif
111 // ************************************************************************* //