// file : cutl/fs/auto-remove.cxx // copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC // license : MIT; see accompanying LICENSE file #include // std::remove #include #include namespace cutl { namespace fs { auto_remove:: ~auto_remove () { if (!canceled_) { if (std::remove (path_.string ().c_str ()) == -1) throw error (errno); } } auto_removes:: ~auto_removes () { if (!canceled_) { for (paths::iterator i (paths_.begin ()); i != paths_.end (); ++i) { if (std::remove (i->string ().c_str ()) == -1) throw error (errno); } } } } }