00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
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