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.

12345678910111213141516171819
  1. //
  2. // Created by robin on 5/10/16.
  3. //
  4. #ifndef ROZITM_COMMON_H
  5. #define ROZITM_COMMON_H
  6. #include <string>
  7. class Common
  8. {
  9. public:
  10. template <class T>
  11. static void testStream(const T& data, const std::string& ref);
  12. };
  13. #include "Common.hxx"
  14. #endif //ROZITM_COMMON_H