Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef ROMANVECTORS_H_INCLUDED
- #define ROMANVECTORS_H_INCLUDED
- //------------------------------------------------------------------------------
- #include "Roman_int.h" //access to Roman_int struct and other libraries
- //------------------------------------------------------------------------------
- vector<Roman_int> roman_ones;
- vector<Roman_int> roman_tens;
- vector<Roman_int> roman_hundreds;
- vector<Roman_int> roman_thousands;
- //------------------------------------------------------------------------------
- void vector_ones(vector<Roman_int>& v);
- void vector_tens(vector<Roman_int>& v);
- void vector_hundreds(vector<Roman_int>& v);
- void vector_thousands(vector<Roman_int>& v);
- //------------------------------------------------------------------------------
- #endif // ROMANVECTORS_H_INCLUDED
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement