column_width.h
Go to the documentation of this file.
1 #ifndef cetlib_column_width_h
2 #define cetlib_column_width_h
3 
4 // ======================================================================
5 //
6 // column_width: Obtain the length of the longest in a vector of strings
7 //
8 // ======================================================================
9 
10 #include <string>
11 #include <vector>
12 
13 namespace cet {
14  std::string::size_type column_width(std::vector<std::string> const&);
15 }
16 
17 #endif /* cetlib_column_width_h */
18 
19 // Local variables:
20 // mode: c++
21 // End:
std::string::size_type column_width(std::vector< std::string > const &)
Definition: column_width.cc:6