AlphaMineron

HEADER FILE

Sep 11th, 2017
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #ifndef file_H
  2. #define file_H
  3.  
  4. enum bool { false, true };
  5.  
  6. template <class T>
  7. void AddColumn(T data, const int& width) {
  8.     cout<<setw(width)<<data<<" | ";
  9. }
  10.  
  11. #endif
Add Comment
Please, Sign In to add comment