view libinterp/corefcn/file-io.h @ 30340:2d80e308b9e4

maint: Merge stable to default.
author John W. Eaton <jwe@octave.org>
date Wed, 24 Nov 2021 12:01:52 -0500
parents eff73c13fcf3 4b31fe078a5e
children ecf207896f76
line wrap: on
line source

////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 1993-2021 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// This file is part of Octave.
//
// Octave is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Octave is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Octave; see the file COPYING.  If not, see
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////

// Written by John C. Campbell <jcc@bevo.che.wisc.edu>

#if ! defined (octave_file_io_h)
#define octave_file_io_h 1

#include "octave-config.h"

#include <string>

OCTAVE_NAMESPACE_BEGIN

// Use this function internally until the function that uses it is
// removed.  Remove when corresponding global deprecated function is
// removed.
extern void mark_for_deletion_deprecated (const std::string&);

// Use this function internally until the function that uses it is
// removed.  Remove when corresponding global deprecated function is
// removed.
extern void cleanup_tmp_files_deprecated (void);

OCTAVE_NAMESPACE_END

#endif