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