Advertisement
Beafantles

Untitled

Mar 10th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #ifndef FOO
  2. #define FOO
  3.  
  4. class A
  5. {
  6. private:
  7.     int m_value;
  8.    
  9. public:
  10.     A() noexcept = default;
  11.     ~A() noexcept = default;
  12.    
  13.     int get_value() const noexcept;
  14. };
  15.  
  16. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement