All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
helper_gadget.h
Go to the documentation of this file.
1 #ifndef HELPER_GADGET_H
2 #define HELPER_GADGET_H
3 
4 #include <iostream>
5 #include <iomanip>
6 #include <vector>
7 
8 
9 namespace single_photon
10 {
11  //header printer; it returns the spacing of each columns;
12  std::vector<int> Printer_header( std::vector< std::string> headings);
13 
14  //table printer
15  void Printer_content( std::vector< std::string > nums, std::vector<int> spacers);
16 
17 }
18 
19 #endif
std::vector< int > Printer_header(std::vector< std::string > headings)
void Printer_content(std::vector< std::string > nums, std::vector< int > spacers)