Remove PrivateImplPointer in favour of std::unique_ptr
[alexxy/gromacs.git] / src / testutils / include / testutils / testfilemanager.h
index 53dbba16c63f556b6947a99b0ea5e4a7923cfbca..d9b8e7c2b1b3aef2467de7d9536ce48011bf7db1 100644 (file)
@@ -2,7 +2,7 @@
  * This file is part of the GROMACS molecular simulation package.
  *
  * Copyright (c) 2012,2013,2014,2015,2018 by the GROMACS development team.
- * Copyright (c) 2019,2020, by the GROMACS development team, led by
+ * Copyright (c) 2019,2020,2021, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
 #ifndef GMX_TESTUTILS_TESTFILEMANAGER_H
 #define GMX_TESTUTILS_TESTFILEMANAGER_H
 
+#include <memory>
 #include <string>
 
-#include "gromacs/utility/classhelpers.h"
-
 namespace gmx
 {
 /*! \libinternal \brief
@@ -235,7 +234,7 @@ public:
 private:
     class Impl;
 
-    PrivateImplPointer<Impl> impl_;
+    std::unique_ptr<Impl> impl_;
 };
 
 } // namespace test