panthema / 2012 / 1119-eSAIS-Inducing-Suffix-and-LCP-Arrays-in-External-Memory / eSAIS-DC3-LCP-0.5.2 / stxxl / include / stxxl / bits / io / create_file.h (Download File)
/***************************************************************************
 *  include/stxxl/bits/io/create_file.h
 *
 *  Part of the STXXL. See http://stxxl.sourceforge.net
 *
 *  Copyright (C) 2010 Andreas Beckmann <beckmann@cs.uni-frankfurt.de>
 *
 *  Distributed under the Boost Software License, Version 1.0.
 *  (See accompanying file LICENSE_1_0.txt or copy at
 *  http://www.boost.org/LICENSE_1_0.txt)
 **************************************************************************/

#ifndef STXXL_IO__CREATE_FILE_H_
#define STXXL_IO__CREATE_FILE_H_

#include <stxxl/bits/io/file.h>


__STXXL_BEGIN_NAMESPACE

file * create_file(const std::string & io_impl,
                   const std::string & filename,
                   int options,
                   int physical_device_id = file::DEFAULT_QUEUE,
                   int allocator_id = file::NO_ALLOCATOR);

__STXXL_END_NAMESPACE

#endif  // !STXXL_IO__CREATE_FILE_H_
// vim: et:ts=4:sw=4