summaryrefslogtreecommitdiff
path: root/src/lib/scoped_temporary.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-05-03 11:17:34 +0200
committerCarl Hetherington <cth@carlh.net>2021-05-03 20:18:04 +0200
commit689fa55d1529ad88449ca464e9107c4dcc54d1cb (patch)
treeedd1264941263f2fa25a98d61f98c87876c5b667 /src/lib/scoped_temporary.cc
parent0aabe4060ea4bad7c7caac633aef0737fccff8c2 (diff)
C++11 tidying.
Diffstat (limited to 'src/lib/scoped_temporary.cc')
-rw-r--r--src/lib/scoped_temporary.cc13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/lib/scoped_temporary.cc b/src/lib/scoped_temporary.cc
index ad4f882a2..223100ba5 100644
--- a/src/lib/scoped_temporary.cc
+++ b/src/lib/scoped_temporary.cc
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
@@ -18,19 +18,21 @@
*/
+
#include "scoped_temporary.h"
#include "exceptions.h"
#include "cross.h"
+
/** Construct a ScopedTemporary. A temporary filename is decided but the file is not opened
* until open() is called.
*/
ScopedTemporary::ScopedTemporary ()
- : _open (0)
{
_file = boost::filesystem::temp_directory_path() / boost::filesystem::unique_path ();
}
+
/** Close and delete the temporary file */
ScopedTemporary::~ScopedTemporary ()
{
@@ -39,13 +41,15 @@ ScopedTemporary::~ScopedTemporary ()
boost::filesystem::remove (_file, ec);
}
+
/** @return temporary filename */
char const *
ScopedTemporary::c_str () const
{
- return _file.string().c_str ();
+ return _file.string().c_str();
}
+
/** Open the temporary file.
* @return File's FILE pointer.
*/
@@ -60,12 +64,13 @@ ScopedTemporary::open (char const * params)
return _open;
}
+
/** Close the file */
void
ScopedTemporary::close ()
{
if (_open) {
fclose (_open);
- _open = 0;
+ _open = nullptr;
}
}