Stxxl
1.4.0
|
00001 /*************************************************************************** 00002 * include/stxxl/bits/io/create_file.h 00003 * 00004 * Part of the STXXL. See http://stxxl.sourceforge.net 00005 * 00006 * Copyright (C) 2010 Andreas Beckmann <beckmann@cs.uni-frankfurt.de> 00007 * 00008 * Distributed under the Boost Software License, Version 1.0. 00009 * (See accompanying file LICENSE_1_0.txt or copy at 00010 * http://www.boost.org/LICENSE_1_0.txt) 00011 **************************************************************************/ 00012 00013 #ifndef STXXL_IO__CREATE_FILE_H_ 00014 #define STXXL_IO__CREATE_FILE_H_ 00015 00016 #include <stxxl/bits/io/file.h> 00017 00018 00019 __STXXL_BEGIN_NAMESPACE 00020 00021 file * create_file(const std::string & io_impl, 00022 const std::string & filename, 00023 int options, 00024 int physical_device_id = file::DEFAULT_QUEUE, 00025 int allocator_id = file::NO_ALLOCATOR); 00026 00027 __STXXL_END_NAMESPACE 00028 00029 #endif // !STXXL_IO__CREATE_FILE_H_ 00030 // vim: et:ts=4:sw=4