blob: a1adcf5f6de76e5b13f5fceb7be7305b0ee4329d (
plain)
1
2
3
4
5
6
7
8
9
10
|
class X14
{
public:
X14();
~X14() = default;
X14(const X14& rhs) = default;
X14& operator=(const X14& rhs) = default;
X14(X14&& rhs) = delete;
X14& operator=(X14&& rhs) = delete;
};
|