Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 323 Bytes

16.25.md

File metadata and controls

7 lines (4 loc) · 323 Bytes
extern template class vector<string>;

This is a template instantiation declaration. It means that there will be a nonextern use of this instantiation elsewhere in the program.

template class vector<Sales_data>;

This is a template instantiation definition. It will instantiate all members of template vector.