Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. namespace MYNAMESPACE{
  2. enum class MyReturnCode {
  3. Success = 1,
  4. MyRetCode01,
  5. MyRetCode02
  6. };
  7. class MyException {
  8. public:
  9. MyException(
  10. MYNAMESPACE::MyReturnCode _code,
  11. std::string _message);
  12.  
  13. MYNAMESPACE::MyReturnCode code;
  14. std::string message;
  15. };
  16. class MyClass {
  17. public:
  18. MyClass();
  19. ~MyClass();
  20. void initialize();
  21. std::string function01();
  22. std::string function02();
  23. int attribute01;
  24. float attribute02;
  25. private:
  26. std::string function03();
  27. int attribute03;
  28. float attribute04;
  29. };
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement