You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
238 B

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;
};