Maybe Result
 All Classes Functions
result.fwd.hpp
1 /*
2  * Copyright 2016 TRAFI
3  *
4  * Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
5  * http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
6  * http://opensource.org/licenses/MIT>, at your option. This file may not be
7  * copied, modified, or distributed except according to those terms.
8  *
9  */
10 
11 #pragma once
12 
13 namespace maybe {
14  template <typename T, typename E>
15  class result;
16 
17  template <typename E>
18  class result<void, E>;
19 }