| 20 | |
| 21 | |
| 22 | class MyFunction { |
| 23 | public: |
| 24 | std::string concat(std::string& str) const { |
| 25 | return info_ + str; |
| 26 | } |
| 27 | |
| 28 | static int multiply(int i, int j) { |
| 29 | return i * j; |
| 30 | } |
| 31 | |
| 32 | private: |
| 33 | std::string info_ = "MyFunction : "; |
| 34 | }; |
| 35 | |
| 36 | #endif //CGRAPH_MYFUNCTION_H |
nothing calls this directly
no outgoing calls
no test coverage detected