SilentPolicy.h
Go to the documentation of this file.
1 #ifndef _utl_SilentPolicy_h_
2 #define _utl_SilentPolicy_h_
3 
4 
5 namespace utl {
6 
21  template<typename RetType = int, RetType RetValue = 0>
22  struct SilentPolicy {
23  static RetType Handle(const std::string& message) {
24  return RetValue;
25  }
26  };
27 
28 }
29 
30 
31 #endif
static RetType Handle(const std::string &message)
Definition: SilentPolicy.h:23
Simply returns.
Definition: SilentPolicy.h:22

, generated on Tue Sep 26 2023.