ゴミ箱
file_base.hpp
Go to the documentation of this file.
1 //
2 // Copyright (c) 2015-2016 Vinnie Falco (vinnie dot falco at gmail dot com)
3 //
4 // Distributed under the Boost Software License, Version 1.0. (See accompanying
5 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 //
7 // Official repository: https://github.com/boostorg/beast
8 //
9 
10 #ifndef BOOST_BEAST_CORE_FILE_BASE_HPP
11 #define BOOST_BEAST_CORE_FILE_BASE_HPP
12 
13 #include <boost/beast/config.hpp>
15 
16 namespace boost {
17 namespace beast {
18 
26 enum class file_mode
27 {
29  read,
30 
32  scan,
33 
41  write,
42 
47  write_new,
48 
54 
65  append,
66 
74  append_new,
75 
84 };
85 
86 } // beast
87 } // boost
88 
89 #endif
file_mode
Definition: file_base.hpp:26
Sequential reading.
Definition: async_result.hpp:20