I'm trying to make a function that returns "vector"
vector<Class A,B or C> _Class123::getVectorList();
or
vector<struct A,B or c> _class123::getDataList();
Various classes are three classes that I define. depending on the logic, this function should return one of those.
in C++, is it possible with template?