There are some structures in C++ which instances can be defined as
my_structure<type> variable;
For example, std::vector
std::vector<int> very_important_vector;
And I would like to know is there any way to make my custom structure, class, or whatever definable as shown above.
Thanks in advance for your answers.