From 8e761289a2446367267c6c0d9a26e734f0f78306 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 16 Dec 2020 20:29:05 +0300 Subject: Get rid of legacy build systems and rename cutl/ to libcutl/ --- cutl/fs/auto-remove.hxx | 82 ------------------------------------------------- 1 file changed, 82 deletions(-) delete mode 100644 cutl/fs/auto-remove.hxx (limited to 'cutl/fs/auto-remove.hxx') diff --git a/cutl/fs/auto-remove.hxx b/cutl/fs/auto-remove.hxx deleted file mode 100644 index 93fd2c5..0000000 --- a/cutl/fs/auto-remove.hxx +++ /dev/null @@ -1,82 +0,0 @@ -// file : cutl/fs/auto-remove.hxx -// license : MIT; see accompanying LICENSE file - -#ifndef CUTL_FS_AUTO_REMOVE_HXX -#define CUTL_FS_AUTO_REMOVE_HXX - -#include - -#include -#include - -#include - -namespace cutl -{ - namespace fs - { - // Remove a file or an empty directory on destruction unless canceled. - // - struct LIBCUTL_EXPORT auto_remove - { - explicit - auto_remove (path const& p) - : path_ (p), canceled_ (false) - { - } - - ~auto_remove (); - - void - cancel () - { - canceled_ = true; - } - - private: - auto_remove (auto_remove const&); - - auto_remove& - operator= (auto_remove const&); - - private: - path path_; - bool canceled_; - }; - - // Remove a list of file or aempty directories on destruction unless - // canceled. - // - struct LIBCUTL_EXPORT auto_removes - { - auto_removes (): canceled_ (false) {} - ~auto_removes (); - - void - add (path const& p) - { - paths_.push_back (p); - } - - void - cancel () - { - canceled_ = true; - } - - private: - auto_removes (auto_removes const&); - - auto_removes& - operator= (auto_removes const&); - - private: - typedef std::vector paths; - - paths paths_; - bool canceled_; - }; - } -} - -#endif // CUTL_FS_AUTO_REMOVE_HXX -- cgit v1.1