| 27 | public: |
| 28 | Package(int content = 43) : m_Content(content) {} |
| 29 | void Clear() { m_Content = 0; } |
| 30 | bool operator==(const Package &other) const { return m_Content == other.m_Content; } |
| 31 | private: |
| 32 | int m_Content; |
no outgoing calls
no test coverage detected