StatisticsTargets.cti
Go to the documentation of this file.
1 //
2 // Copyright (c) 2020 Fraunhofer Institute for Applied Information Technology (FIT)
3 // Network Research Group (NET)
4 // Schloss Birlinghoven, 53754 Sankt Augustin, GERMANY
5 // Contact: support@wiback.org
6 //
7 // This file is part of the SENF code tree.
8 // It is licensed under the 3-clause BSD License (aka New BSD License).
9 // See LICENSE.txt in the top level directory for details or visit
10 // https://opensource.org/licenses/BSD-3-Clause
11 //
12 
13 
14 /** \file
15  \brief StatisticsTargets inline template implementation */
16 
17 #include "StatisticsTargets.ih"
18 
19 // Custom includes
20 
21 #define prefix_ inline
22 //-/////////////////////////////////////////////////////////////////////////////////////////////////
23 
24 //-/////////////////////////////////////////////////////////////////////////////////////////////////
25 // senf::detail::StatisticsLogger
26 
27 template <class Stream, class Area, class Level>
28 prefix_ senf::detail::StatisticsLogger<Stream,Area,Level>::
29 StatisticsLogger(std::string const & label_)
30  : label (label_.empty() ? "" : label_ + " ")
31 {}
32 
33 //-/////////////////////////////////////////////////////////////////////////////////////////////////
34 
35 template <class Stream>
36 prefix_ std::unique_ptr< senf::detail::StatisticsLogger<Stream,void,void> >
37 senf::StatisticsLogger(std::string const & label)
38 {
39  return std::unique_ptr< detail::StatisticsLogger<Stream,void,void> >(
40  new detail::StatisticsLogger<Stream,void,void>(label));
41 }
42 
43 template <class Stream, class Area>
44 prefix_ std::unique_ptr< senf::detail::StatisticsLogger<Stream,Area,void> >
45 senf::StatisticsLogger(std::string const & label)
46 {
47  return std::unique_ptr< detail::StatisticsLogger<Stream,Area,void> >(
48  new detail::StatisticsLogger<Stream,Area,void>(label));
49 }
50 
51 template <class Stream, class Area, class Level>
52 prefix_ std::unique_ptr< senf::detail::StatisticsLogger<Stream,Area,Level> >
53 senf::StatisticsLogger(std::string const & label)
54 {
55  return std::unique_ptr< detail::StatisticsLogger<Stream,Area,Level> >(
56  new detail::StatisticsLogger<Stream,Area,Level>(label));
57 }
58 
59 //-/////////////////////////////////////////////////////////////////////////////////////////////////
60 #undef prefix_
61 
62 
63 // Local Variables:
64 // mode: c++
65 // fill-column: 100
66 // comment-column: 40
67 // c-file-style: "senf"
68 // indent-tabs-mode: nil
69 // ispell-local-dictionary: "american"
70 // compile-command: "scons -u test"
71 // End: