Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use real pointer type for context wrappers.
[simgrid.git] / src / kernel / EngineImpl.hpp
index cbd60b4..27530d9 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2016-2018. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2016-2019. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -15,6 +15,8 @@ namespace kernel {
 class EngineImpl {
 public:
   EngineImpl();
+  EngineImpl(const EngineImpl&) = delete;
+  EngineImpl& operator=(const EngineImpl&) = delete;
   virtual ~EngineImpl();
   kernel::routing::NetZoneImpl* netzone_root_ = nullptr;