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

11 lines
131 B
C++

#pragma once
namespace iue::other {
struct Widget {
int calc() const;
};
int calc(const Widget& w);
} // namespace iue::other