TU-Programmieren_2/lab3/modules/iue-other/library.cpp
2025-04-09 10:22:44 +02:00

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