Midge  v3.9.2
Data Processing Framework
print.cc
Go to the documentation of this file.
1 // print.cc
2 // Author: N.S. Oblath
3 // Date: May 4, 2020
4 
5 #include "print.hh"
6 
7 #include "logger.hh"
8 
9 LOGGER( plog, "print" );
10 
11 namespace pbtest
12 {
13  void print( const scarab::param& a_param )
14  {
15  LINFO( plog, a_param );
16  return;
17  }
18 }
void print(const scarab::param &a_param)
Definition: print.cc:13
Definition: print.cc:11