STYLE: add setHit/setMiss methods to objectHit

- consistency with PointHit and PointIndexHit
This commit is contained in:
Mark Olesen
2017-10-04 08:50:00 +02:00
parent 37c6127338
commit 90c8c6d174
2 changed files with 20 additions and 1 deletions

View File

@ -117,6 +117,8 @@ public:
// Member Functions
// Access
//- Is there a hit
bool hit() const
{
@ -167,6 +169,8 @@ public:
return eligibleMiss_;
}
// Edit
void setHit()
{
hit_ = true;

View File

@ -3,7 +3,7 @@
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
\\/ M anipulation |
\\/ M anipulation | Copyright (C) 2017 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
@ -83,6 +83,8 @@ public:
// Member Functions
// Access
//- Is there a hit
inline bool hit() const
{
@ -96,6 +98,19 @@ public:
}
// Edit
void setHit()
{
hit_ = true;
}
void setMiss()
{
hit_ = false;
}
// Ostream operator
inline friend Ostream& operator<<(Ostream& os, const objectHit& obj)