* spot/misc/tmpfile.hh: Disallow copy.

This commit is contained in:
Alexandre Duret-Lutz 2016-05-01 18:35:55 +02:00
parent 7531c88671
commit 925785e85f

View file

@ -52,6 +52,9 @@ namespace spot
typedef std::list<temporary_file*>::iterator cleanpos_t;
SPOT_LOCAL temporary_file(char* name, cleanpos_t cp);
temporary_file(const temporary_file& other) = delete;
virtual ~temporary_file() override;
const char* name() const