This commit is contained in:
Light-City
2019-12-25 21:06:30 +08:00
parent 8544284f51
commit 095ebc9011
8 changed files with 148 additions and 29 deletions

View File

@@ -0,0 +1,18 @@
//
// Created by light on 19-12-25.
//
class myFun {
public:
myFun() = default;
myFun(const myFun &) = default;
myFun &operator=(const myFun &) = default;
myFun(myFun &&) = delete;
myFun &operator=(myFun &&) = delete;
~myFun() = default;
};