AmbushedRaccoon

Flag check

Aug 2nd, 2025
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. class Status
  2. {
  3. public:
  4.     void Method()
  5.     {
  6.         _isMethod = true;
  7.         //.....
  8.         _isMethod = false;
  9.     }
  10.     bool isMethodInProgress() const
  11.     {
  12.         return _isMethod;
  13.     }
  14. private:
  15.     bool _isMethod = false;
  16. };
  17.  
Advertisement
Add Comment
Please, Sign In to add comment