/** * vector_.hh * * Created on: 08 sep. 2020 * Author: AKKA IS */ #ifndef VECTOR_HH_ #define VECTOR_HH_ #include std::vector vector_(const int& comp1, const int& comp2, const int& comp3); std::vector vector_(const double& comp1, const double& comp2, const double& comp3); std::vector vector_(const long double& comp1, const long double& comp2, const long double& comp3); std::vector vector_(const short& comp1, const short& comp2, const short& comp3); std::vector vector_(const float& comp1, const float& comp2, const float& comp3); #endif /* VECTOR_HH_ */