Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Status
- {
- public:
- void Method()
- {
- _isMethod = true;
- //.....
- _isMethod = false;
- }
- bool isMethodInProgress() const
- {
- return _isMethod;
- }
- private:
- bool _isMethod = false;
- };
Advertisement
Add Comment
Please, Sign In to add comment