9 lines
161 B
C++
9 lines
161 B
C++
#include "library.hpp"
|
|
|
|
namespace iue::other {
|
|
|
|
int Widget::calc() const { return 5; }
|
|
|
|
int calc(const Widget& w) { return w.calc(); }
|
|
|
|
} // namespace iue::other
|