You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
298 B

#ifndef CONVERT_H
#define CONVERT_H
namespace satlab
{
namespace types
{
// template<typename TARGET_T, typename SOURCE_T>
// TARGET_T convert(const SOURCE_T& source);
template<typename TARGET_T, typename SOURCE_T>
void convert(TARGET_T&, const SOURCE_T& source);
}
}
#endif // CONVERT_H