mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
reorganized locations of some primitives
This commit is contained in:
@ -3,35 +3,42 @@ global/dimensionedConstants/dimensionedConstants.C
|
||||
global/argList/argList.C
|
||||
global/clock/clock.C
|
||||
|
||||
primitives/bools/bool/bool.C
|
||||
primitives/bools/bool/boolIO.C
|
||||
primitives/bools/Switch/Switch.C
|
||||
primitives/bools/Switch/SwitchIO.C
|
||||
bools = primitives/bools
|
||||
$(bools)/bool/bool.C
|
||||
$(bools)/bool/boolIO.C
|
||||
$(bools)/Switch/Switch.C
|
||||
$(bools)/Switch/SwitchIO.C
|
||||
|
||||
primitives/char/charIO.C
|
||||
primitives/int/intIO.C
|
||||
primitives/uint/uintIO.C
|
||||
primitives/long/longIO.C
|
||||
primitives/longLong/longLongIO.C
|
||||
primitives/ulong/ulongIO.C
|
||||
primitives/label/label.C
|
||||
primitives/uLabel/uLabel.C
|
||||
|
||||
ints = primitives/ints
|
||||
$(ints)/int/intIO.C
|
||||
$(ints)/uint/uintIO.C
|
||||
$(ints)/long/longIO.C
|
||||
$(ints)/longLong/longLongIO.C
|
||||
$(ints)/ulong/ulongIO.C
|
||||
$(ints)/label/label.C
|
||||
$(ints)/uLabel/uLabel.C
|
||||
|
||||
primitives/Scalar/doubleScalar/doubleScalar.C
|
||||
primitives/Scalar/floatScalar/floatScalar.C
|
||||
primitives/Scalar/scalar/scalar.C
|
||||
primitives/labelVector/labelVector.C
|
||||
primitives/vector/vector.C
|
||||
primitives/vector2D/vector2D.C
|
||||
primitives/sphericalTensor/sphericalTensor.C
|
||||
primitives/sphericalTensor2D/sphericalTensor2D.C
|
||||
primitives/diagTensor/diagTensor.C
|
||||
primitives/symmTensor/symmTensor.C
|
||||
primitives/tensor/tensor.C
|
||||
primitives/tensor2D/tensor2D.C
|
||||
primitives/labelSphericalTensor/labelSphericalTensor.C
|
||||
primitives/labelSymmTensor/labelSymmTensor.C
|
||||
primitives/labelTensor/labelTensor.C
|
||||
primitives/DiagTensor/diagTensor/diagTensor.C
|
||||
primitives/SphericalTensor/sphericalTensor/sphericalTensor.C
|
||||
primitives/SphericalTensor/labelSphericalTensor/labelSphericalTensor.C
|
||||
primitives/SymmTensor/labelSymmTensor/labelSymmTensor.C
|
||||
primitives/SymmTensor/symmTensor/symmTensor.C
|
||||
primitives/Tensor/labelTensor/labelTensor.C
|
||||
primitives/Tensor/tensor/tensor.C
|
||||
primitives/Vector/complexVector/complexVector.C
|
||||
primitives/Vector/labelVector/labelVector.C
|
||||
primitives/Vector/vector/vector.C
|
||||
|
||||
primitives/Tensor2D/tensor2D/tensor2D.C
|
||||
primitives/SphericalTensor2D/sphericalTensor2D/sphericalTensor2D.C
|
||||
primitives/Vector2D/vector2D/vector2D.C
|
||||
|
||||
primitives/complex/complex.C
|
||||
primitives/complexVector/complexVector.C
|
||||
primitives/quaternion/quaternion.C
|
||||
primitives/septernion/septernion.C
|
||||
|
||||
|
||||
@ -26,7 +26,7 @@ Typedef
|
||||
Foam::labelSymmTensor
|
||||
|
||||
Description
|
||||
SymmTensor or labels.
|
||||
SymmTensor of labels.
|
||||
|
||||
SourceFiles
|
||||
labelSymmTensor.C
|
||||
@ -26,7 +26,7 @@ Typedef
|
||||
Foam::symmTensor
|
||||
|
||||
Description
|
||||
SymmTensor or scalars.
|
||||
SymmTensor of scalars.
|
||||
|
||||
SourceFiles
|
||||
symmTensor.C
|
||||
@ -26,7 +26,7 @@ Typedef
|
||||
Foam::tensor
|
||||
|
||||
Description
|
||||
Tensor or scalars.
|
||||
Tensor of scalars.
|
||||
|
||||
SourceFiles
|
||||
tensor.C
|
||||
@ -22,14 +22,10 @@ License
|
||||
along with OpenFOAM; if not, write to the Free Software Foundation,
|
||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
Description
|
||||
Vector of labels.
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
#include "labelVector.H"
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
||||
|
||||
template<>
|
||||
@ -26,7 +26,7 @@ Typedef
|
||||
Foam::labelVector
|
||||
|
||||
Description
|
||||
labelVector obtained from generic Vector
|
||||
Vector of labels.
|
||||
|
||||
SourceFiles
|
||||
labelVector.C
|
||||
@ -26,7 +26,8 @@ Typedef
|
||||
Foam::label
|
||||
|
||||
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
|
||||
Istream.
|
||||
|
||||
@ -26,7 +26,7 @@ Primitive
|
||||
long
|
||||
|
||||
Description
|
||||
A long int
|
||||
A long integer
|
||||
|
||||
SourceFiles
|
||||
longIO.C
|
||||
@ -26,7 +26,7 @@ Primitive
|
||||
long long
|
||||
|
||||
Description
|
||||
A long long (64 bits)
|
||||
A long long (64 bits on many systems)
|
||||
|
||||
SourceFiles
|
||||
longLongIO.C
|
||||
@ -26,7 +26,10 @@ Typedef
|
||||
Foam::uLabel
|
||||
|
||||
Description
|
||||
A uLabel is an unsigned label. See label.H.
|
||||
A uLabel is an unsigned label.
|
||||
|
||||
SeeAlso
|
||||
label.H
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
@ -26,7 +26,7 @@ Primitive
|
||||
ulong
|
||||
|
||||
Description
|
||||
System ulong
|
||||
System unsigned long
|
||||
|
||||
SourceFiles
|
||||
ulongIO.C
|
||||
@ -23,10 +23,7 @@ License
|
||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
Description
|
||||
Reads an ulong from an input stream, for a given version
|
||||
number and File format. If an ascii File is being read,
|
||||
then the line numbers are counted and an erroneous read
|
||||
ised.
|
||||
Reads a ulong from an input stream.
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
Reference in New Issue
Block a user