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