Stxxl  1.3.2
create_file.h
1 /***************************************************************************
2  * include/stxxl/bits/io/create_file.h
3  *
4  * Part of the STXXL. See http://stxxl.sourceforge.net
5  *
6  * Copyright (C) 2010 Andreas Beckmann <[email protected]>
7  *
8  * Distributed under the Boost Software License, Version 1.0.
9  * (See accompanying file LICENSE_1_0.txt or copy at
10  * http://www.boost.org/LICENSE_1_0.txt)
11  **************************************************************************/
12 
13 #ifndef STXXL_IO__CREATE_FILE_H_
14 #define STXXL_IO__CREATE_FILE_H_
15 
16 #include <stxxl/bits/io/file.h>
17 
18 
19 __STXXL_BEGIN_NAMESPACE
20 
21 file * create_file(const std::string & io_impl,
22  const std::string & filename,
23  int options,
24  int physical_device_id = file::DEFAULT_QUEUE,
25  int allocator_id = file::NO_ALLOCATOR);
26 
27 __STXXL_END_NAMESPACE
28 
29 #endif // !STXXL_IO__CREATE_FILE_H_
30 // vim: et:ts=4:sw=4
Defines interface of file.
Definition: file.h:90