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

6 years ago
6 years ago
  1. #ifndef CONVERT_H
  2. #define CONVERT_H
  3. namespace satlab
  4. {
  5. namespace types
  6. {
  7. // template<typename TARGET_T, typename SOURCE_T>
  8. // TARGET_T convert(const SOURCE_T& source);
  9. template<typename TARGET_T, typename SOURCE_T>
  10. void convert(TARGET_T&, const SOURCE_T& source);
  11. }
  12. }
  13. #endif // CONVERT_H