Advertisement
Guest User

Untitled

a guest
Aug 24th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. switch (s)
  2. {
  3. case Status::Error:
  4. OnDispose();
  5. OnError();
  6. break;
  7. case Status::Disposed:
  8. OnDispose();
  9. break;
  10. case Status::Normal:
  11. OnResume();
  12. break;
  13. case Status::Suspended:
  14. OnSuspend();
  15. break;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement