LRT14  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
error_val.hpp
1 #ifndef RHESUS_NOTHROW_H_
2 #define RHESUS_NOTHROW_H_
3 
4 namespace Rhesus
5 {
6 namespace Toolkit
7 {
8  template<class T>
9  class error_val
10  {
11  public:
12  T operator()()
13  {
14  return T();
15  }
16  };
17 }
18 }
19 
20 #endif