reorganized locations of some primitives

This commit is contained in:
Mark Olesen
2009-02-27 17:46:43 +01:00
parent 106d417de0
commit f83e4cbd98
42 changed files with 45 additions and 41 deletions

View File

@ -3,35 +3,42 @@ global/dimensionedConstants/dimensionedConstants.C
global/argList/argList.C global/argList/argList.C
global/clock/clock.C global/clock/clock.C
primitives/bools/bool/bool.C bools = primitives/bools
primitives/bools/bool/boolIO.C $(bools)/bool/bool.C
primitives/bools/Switch/Switch.C $(bools)/bool/boolIO.C
primitives/bools/Switch/SwitchIO.C $(bools)/Switch/Switch.C
$(bools)/Switch/SwitchIO.C
primitives/char/charIO.C primitives/char/charIO.C
primitives/int/intIO.C
primitives/uint/uintIO.C ints = primitives/ints
primitives/long/longIO.C $(ints)/int/intIO.C
primitives/longLong/longLongIO.C $(ints)/uint/uintIO.C
primitives/ulong/ulongIO.C $(ints)/long/longIO.C
primitives/label/label.C $(ints)/longLong/longLongIO.C
primitives/uLabel/uLabel.C $(ints)/ulong/ulongIO.C
$(ints)/label/label.C
$(ints)/uLabel/uLabel.C
primitives/Scalar/doubleScalar/doubleScalar.C primitives/Scalar/doubleScalar/doubleScalar.C
primitives/Scalar/floatScalar/floatScalar.C primitives/Scalar/floatScalar/floatScalar.C
primitives/Scalar/scalar/scalar.C primitives/Scalar/scalar/scalar.C
primitives/labelVector/labelVector.C primitives/DiagTensor/diagTensor/diagTensor.C
primitives/vector/vector.C primitives/SphericalTensor/sphericalTensor/sphericalTensor.C
primitives/vector2D/vector2D.C primitives/SphericalTensor/labelSphericalTensor/labelSphericalTensor.C
primitives/sphericalTensor/sphericalTensor.C primitives/SymmTensor/labelSymmTensor/labelSymmTensor.C
primitives/sphericalTensor2D/sphericalTensor2D.C primitives/SymmTensor/symmTensor/symmTensor.C
primitives/diagTensor/diagTensor.C primitives/Tensor/labelTensor/labelTensor.C
primitives/symmTensor/symmTensor.C primitives/Tensor/tensor/tensor.C
primitives/tensor/tensor.C primitives/Vector/complexVector/complexVector.C
primitives/tensor2D/tensor2D.C primitives/Vector/labelVector/labelVector.C
primitives/labelSphericalTensor/labelSphericalTensor.C primitives/Vector/vector/vector.C
primitives/labelSymmTensor/labelSymmTensor.C
primitives/labelTensor/labelTensor.C primitives/Tensor2D/tensor2D/tensor2D.C
primitives/SphericalTensor2D/sphericalTensor2D/sphericalTensor2D.C
primitives/Vector2D/vector2D/vector2D.C
primitives/complex/complex.C primitives/complex/complex.C
primitives/complexVector/complexVector.C
primitives/quaternion/quaternion.C primitives/quaternion/quaternion.C
primitives/septernion/septernion.C primitives/septernion/septernion.C

View File

@ -26,7 +26,7 @@ Typedef
Foam::labelSymmTensor Foam::labelSymmTensor
Description Description
SymmTensor or labels. SymmTensor of labels.
SourceFiles SourceFiles
labelSymmTensor.C labelSymmTensor.C

View File

@ -26,7 +26,7 @@ Typedef
Foam::symmTensor Foam::symmTensor
Description Description
SymmTensor or scalars. SymmTensor of scalars.
SourceFiles SourceFiles
symmTensor.C symmTensor.C

View File

@ -26,7 +26,7 @@ Typedef
Foam::tensor Foam::tensor
Description Description
Tensor or scalars. Tensor of scalars.
SourceFiles SourceFiles
tensor.C tensor.C

View File

@ -22,14 +22,10 @@ License
along with OpenFOAM; if not, write to the Free Software Foundation, along with OpenFOAM; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Description
Vector of labels.
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
#include "labelVector.H" #include "labelVector.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
template<> template<>

View File

@ -26,7 +26,7 @@ Typedef
Foam::labelVector Foam::labelVector
Description Description
labelVector obtained from generic Vector Vector of labels.
SourceFiles SourceFiles
labelVector.C labelVector.C

View File

@ -26,7 +26,8 @@ Typedef
Foam::label Foam::label
Description Description
A label is an int/long/long long depending on the range wanted. A label is an int/long/long long depending on the range desired.
A readLabel function is defined so that label can be constructed from A readLabel function is defined so that label can be constructed from
Istream. Istream.

View File

@ -26,7 +26,7 @@ Primitive
long long
Description Description
A long int A long integer
SourceFiles SourceFiles
longIO.C longIO.C

View File

@ -26,7 +26,7 @@ Primitive
long long long long
Description Description
A long long (64 bits) A long long (64 bits on many systems)
SourceFiles SourceFiles
longLongIO.C longLongIO.C

View File

@ -26,7 +26,10 @@ Typedef
Foam::uLabel Foam::uLabel
Description Description
A uLabel is an unsigned label. See label.H. A uLabel is an unsigned label.
SeeAlso
label.H
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/

View File

@ -26,7 +26,7 @@ Primitive
ulong ulong
Description Description
System ulong System unsigned long
SourceFiles SourceFiles
ulongIO.C ulongIO.C

View File

@ -23,10 +23,7 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Description Description
Reads an ulong from an input stream, for a given version Reads a ulong from an input stream.
number and File format. If an ascii File is being read,
then the line numbers are counted and an erroneous read
ised.
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/