diff options
Diffstat (limited to 'atf-c++/tests.hpp')
-rw-r--r-- | atf-c++/tests.hpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/atf-c++/tests.hpp b/atf-c++/tests.hpp index 22a2a87..4c8ca91 100644 --- a/atf-c++/tests.hpp +++ b/atf-c++/tests.hpp @@ -38,8 +38,6 @@ extern "C" { #include <atf-c/defs.h> } -#include <atf-c++/noncopyable.hpp> - namespace atf { namespace tests { @@ -74,7 +72,11 @@ typedef std::map< std::string, std::string > vars_map; struct tc_impl; -class tc : noncopyable { +class tc { + // Non-copyable. + tc(const tc&); + tc& operator=(const tc&); + std::auto_ptr< tc_impl > pimpl; protected: |