/** * vector_.hh * * Created on: 08 sep. 2020 * Author: AKKA IS */ #ifndef VECTOR_HH_ #define VECTOR_HH_ #include template std::vector vector_(const Type1& comp1, const Type2& comp2, const Type3& comp3) { std::vector vec; vec.push_back(comp1); vec.push_back((Type1)comp2); vec.push_back((Type1)comp3); return vec; } #endif /* VECTOR_HH_ */