Skip to content
Snippets Groups Projects
Commit 97ea2285 authored by andy's avatar andy
Browse files

BUG: Put NamedEnum names into Foam namespace

parent 8667f2ef
Branches
Tags
No related merge requests found
......@@ -39,42 +39,43 @@ License
defineTypeNameAndDebug(Foam::extendedFeatureEdgeMesh, 0);
template<>
const char* Foam::NamedEnum
<
Foam::extendedFeatureEdgeMesh::pointStatus,
4
>::names[] =
namespace Foam
{
"convex",
"concave",
"mixed",
"nonFeature"
};
template<>
const char* Foam::NamedEnum
<
Foam::extendedFeatureEdgeMesh::pointStatus,
4
>::names[] =
{
"convex",
"concave",
"mixed",
"nonFeature"
};
template<>
const char* Foam::NamedEnum
<
Foam::extendedFeatureEdgeMesh::edgeStatus,
6
>::names[] =
{
"external",
"internal",
"flat",
"open",
"multiple",
"none"
};
}
const Foam::NamedEnum<Foam::extendedFeatureEdgeMesh::pointStatus, 4>
Foam::extendedFeatureEdgeMesh::pointStatusNames_;
template<>
const char* Foam::NamedEnum
<
Foam::extendedFeatureEdgeMesh::edgeStatus,
6
>::names[] =
{
"external",
"internal",
"flat",
"open",
"multiple",
"none"
};
const Foam::NamedEnum<Foam::extendedFeatureEdgeMesh::edgeStatus, 6>
Foam::extendedFeatureEdgeMesh::edgeStatusNames_;
Foam::scalar Foam::extendedFeatureEdgeMesh::cosNormalAngleTol_ =
Foam::cos(degToRad(0.1));
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment