diff --git a/src/KingSystem/ActorSystem/actBaseProcHandle.h b/src/KingSystem/ActorSystem/actBaseProcHandle.h index 7a28f949..0e3f9e38 100644 --- a/src/KingSystem/ActorSystem/actBaseProcHandle.h +++ b/src/KingSystem/ActorSystem/actBaseProcHandle.h @@ -14,6 +14,11 @@ public: BaseProcHandle(); ~BaseProcHandle(); + BaseProcHandle(const BaseProcHandle&) = delete; + BaseProcHandle(BaseProcHandle&&) = delete; + auto operator=(const BaseProcHandle&) = delete; + auto operator=(BaseProcHandle&&) = delete; + bool isProcReady() const; bool hasProcCreationFailed() const; bool isProcCreationCancelled() const;