Advertisement
tattersail

RomanVectors.h

Apr 12th, 2018
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. #ifndef ROMANVECTORS_H_INCLUDED
  2. #define ROMANVECTORS_H_INCLUDED
  3. //------------------------------------------------------------------------------
  4. #include "Roman_int.h" //access to Roman_int struct and other libraries
  5. //------------------------------------------------------------------------------
  6. vector<Roman_int> roman_ones;
  7. vector<Roman_int> roman_tens;
  8. vector<Roman_int> roman_hundreds;
  9. vector<Roman_int> roman_thousands;
  10. //------------------------------------------------------------------------------
  11. void vector_ones(vector<Roman_int>& v);
  12. void vector_tens(vector<Roman_int>& v);
  13. void vector_hundreds(vector<Roman_int>& v);
  14. void vector_thousands(vector<Roman_int>& v);
  15. //------------------------------------------------------------------------------
  16. #endif // ROMANVECTORS_H_INCLUDED
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement