Skip to content
Snippets Groups Projects
Commit 90c8c6d1 authored by Mark OLESEN's avatar Mark OLESEN
Browse files

STYLE: add setHit/setMiss methods to objectHit

- consistency with PointHit and PointIndexHit
parent 37c61273
No related branches found
No related tags found
No related merge requests found
...@@ -117,6 +117,8 @@ public: ...@@ -117,6 +117,8 @@ public:
// Member Functions // Member Functions
// Access
//- Is there a hit //- Is there a hit
bool hit() const bool hit() const
{ {
...@@ -167,6 +169,8 @@ public: ...@@ -167,6 +169,8 @@ public:
return eligibleMiss_; return eligibleMiss_;
} }
// Edit
void setHit() void setHit()
{ {
hit_ = true; hit_ = true;
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation | Copyright (C) 2017 OpenCFD Ltd.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
This file is part of OpenFOAM. This file is part of OpenFOAM.
...@@ -83,6 +83,8 @@ public: ...@@ -83,6 +83,8 @@ public:
// Member Functions // Member Functions
// Access
//- Is there a hit //- Is there a hit
inline bool hit() const inline bool hit() const
{ {
...@@ -96,6 +98,19 @@ public: ...@@ -96,6 +98,19 @@ public:
} }
// Edit
void setHit()
{
hit_ = true;
}
void setMiss()
{
hit_ = false;
}
// Ostream operator // Ostream operator
inline friend Ostream& operator<<(Ostream& os, const objectHit& obj) inline friend Ostream& operator<<(Ostream& os, const objectHit& obj)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment