11 lines
131 B
C++
11 lines
131 B
C++
#pragma once
|
|
|
|
namespace iue::other {
|
|
|
|
struct Widget {
|
|
int calc() const;
|
|
};
|
|
|
|
int calc(const Widget& w);
|
|
|
|
} // namespace iue::other
|