-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbencode_fwd.hpp
More file actions
42 lines (31 loc) · 745 Bytes
/
Copy pathbencode_fwd.hpp
File metadata and controls
42 lines (31 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
///@file forward declarations
namespace bencode {
template<
typename IntegralType,
typename StringType,
template <typename T> typename ListType,
template <typename K, typename V> typename DictType
>
struct bvalue_policy;
struct default_bvalue_policy;
template <typename Policy> class basic_bvalue;
class bview;
class integer_bview;
class string_bview;
class list_bview;
class dict_bview;
class bpointer;
class exception;
class bad_access;
class bad_bview_access;
class bad_bvalue_access;
class out_of_range;
class parsing_error;
class bad_conversion;
class bpointer_error;
class encoding_error;
class descriptor;
class descriptor_table;
class descriptor_parser;
enum class string_parsing_mode : bool;
}