Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Common.h 272B

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